aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/local_variable_redeclaration.zig
blob: a0861ada490d2bef43a10733aace811648cba614 (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