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

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