test "separate scopes" { { const pi = 3.14; } { var pi: bool = true; } } test "inside test block" { // That's right, no shadowing. const pi = 3.14; { var pi: i32 = 1234; } }