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

// error
// backend=stage2
// target=x86_64-linux,x86_64-macos
//
// :3:9: error: redeclaration of local variable 'i'
// :2:9: note: previous declaration here