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