master
1test "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'