blob: 8e9431df8c76efe936bd219d1bc5201730623770 (
plain)
1
2
3
4
5
6
7
8
9
|
pub fn main() void {
const large_slice = @as([*]const u8, @ptrFromInt(1))[0..(0xffffffffffffffff >> 3)];
_ = large_slice;
}
// compile
// backend=llvm
// target=x86_64-linux,x86_64-macos
//
|