zig/test/cases/variable_shadowing.6.zig

12 lines
222 B
Zig
Raw Normal View History

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