zig/test/cases/variable_shadowing.9.zig

10 lines
194 B
Zig

pub fn main() void {
var i = 0;
if (true) |_| {} else |i| {}
}
// error
//
// :3:28: error: capture 'i' shadows local variable from outer scope
// :2:9: note: previous declaration here