| 1 | export fn entry() void { |
| 2 | const fn_ptr: *align(1) fn () void = @ptrFromInt(0xffd2); |
| 3 | comptime fn_ptr(); |
| 4 | } |
| 5 | |
| 6 | // error |
| 7 | // |
| 8 | // :3:14: error: unable to resolve comptime value |
| 9 | // :3:5: note: 'comptime' keyword forces comptime evaluation |