zig/doc/langref/test_scopes.zig

13 lines
147 B
Zig
Raw Normal View History

test "separate scopes" {
{
const pi = 3.14;
_ = pi;
}
{
var pi: bool = true;
_ = π
}
}
// test