blob: d6598aab3929130d1238fbc426640fa2dd31097b (
plain)
1
2
3
4
5
6
7
8
9
10
|
export fn entry() void {
const fn_ptr = @ptrFromInt(*align(1) fn () void, 0xffd2);
comptime fn_ptr();
}
// error
// backend=stage2
// target=native
//
// :3:20: error: comptime call of function pointer
|