mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
d0fb1ef962
Updates the linker test to verify the various cases where we must store the data in the bss segment.
6 lines
61 B
Zig
6 lines
61 B
Zig
pub var bss: u32 = 0;
|
|
|
|
export fn foo() void {
|
|
_ = bss;
|
|
}
|