zig/test/cases/variable_shadowing.8.zig

10 lines
178 B
Zig

pub fn main() void {
var i = 0;
if (true) |i| {} else |e| {}
}
// error
//
// :3:16: error: redeclaration of local variable 'i'
// :2:9: note: previous declaration here