10 lines
226 B
Zig
10 lines
226 B
Zig
export fn entry() void {
|
|
_ = @ptrFromInt(*anyopaque, ~@as(usize, @import("std").math.maxInt(usize)) - 1);
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :2:80: error: overflow of integer type 'usize' with value '-1'
|