zig/test/cases/variable_shadowing.4.zig

11 lines
187 B
Zig

pub fn main() void {
var i = 0;
for ("n") |i| {
}
}
// error
//
// :3:16: error: capture 'i' shadows local variable from outer scope
// :2:9: note: previous declaration here