Files
zig/test/cases/variable_shadowing.5.zig
2023-06-19 12:34:42 -07:00

10 lines
184 B
Zig

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