mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
9 lines
210 B
Zig
9 lines
210 B
Zig
pub fn main() void {
|
|
const large_slice = @as([*]const u8, @ptrFromInt(1))[0..(0xffffffffffffffff >> 3)];
|
|
_ = large_slice;
|
|
}
|
|
|
|
// compile
|
|
// backend=selfhosted,llvm
|
|
// target=x86_64-linux,x86_64-macos
|
|
//
|