zig/doc/langref/test_namespaced_container_level_variable.zig

18 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