aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/local_variable_redeclaration.zig
blob: 5b81cd5fbc2047248d9d4a0d1996fc64811acf13 (plain)
1
2
3
4
5
6
7
8
9
10
11
export fn f() void {
    const a: i32 = 0;
    var a = 0;
}

// error
// backend=stage2
// target=native
//
// :3:9: error: redeclaration of local constant 'a'
// :2:11: note: previous declaration here