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