Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_blocks.zig
pretty
plain
permalink
blame
history
•
9 lines
•
157 B
1
test "access variable after block scope" {
2
{
3
var x: i32 = 1;
4
_ = &x;
5
}
6
x += 1;
7
}
8
9
// test_error=use of undeclared identifier 'x'