zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

test_blocks.zig (157B) - Raw


      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'