aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/test_blocks.zig
blob: b626f023716b4a4fee389c4bdd4f3348ab1e6101 (plain)
1
2
3
4
5
6
7
8
9
test "access variable after block scope" {
    {
        var x: i32 = 1;
        _ = &x;
    }
    x += 1;
}

// test_error=use of undeclared identifier 'x'