zig/test/cases/variable_shadowing.3.zig
2023-02-18 19:17:21 -07:00

11 lines
195 B
Zig

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