aboutsummaryrefslogtreecommitdiff
path: root/test/cases/variable_shadowing.7.zig
blob: e8368699b4dd4018a38e54a318bada43277ee88c (plain)
1
2
3
4
5
6
7
8
9
pub fn main() void {
    var i = 0;
    if (true) |i| {}
}

// error
//
// :3:16: error: capture 'i' shadows local variable from outer scope
// :2:9: note: previous declaration here