aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/comptime_call_of_function_pointer.zig
blob: d419d5fe86e65305aa834522bb947b68cf2d7efb (plain)
1
2
3
4
5
6
7
8
9
export fn entry() void {
    const fn_ptr: *align(1) fn () void = @ptrFromInt(0xffd2);
    comptime fn_ptr();
}

// error
//
// :3:14: error: unable to resolve comptime value
// :3:5: note: 'comptime' keyword forces comptime evaluation