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