Files
zig/doc/langref/test_namespaced_variable.zig
T
2026-04-19 10:38:01 -07:00

19 lines
292 B
Zig

const std = @import("std");
const expectEqual = std.testing.expectEqual;
test "namespaced container level variable" {
try expectEqual(1235, foo());
try expectEqual(1236, foo());
}
const S = struct {
var x: i32 = 1234;
};
fn foo() i32 {
S.x += 1;
return S.x;
}
// test