mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 00:03:10 +00:00
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;
|
|
}
|