mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
Updates the linker test to verify the various cases where we must store the data in the bss segment.
5 lines
61 B
Zig
5 lines
61 B
Zig
pub var bss: u32 = 0;
|
|
|
|
export fn foo() void {
|
|
_ = bss;
|
|
}
|