aboutsummaryrefslogtreecommitdiff
path: root/test/cases/variable_shadowing.5.zig
blob: 78247e68feaa468461fa71c6f9c9ed059dec9213 (plain)
1
2
3
4
5
6
7
8
9
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