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

// error
//
// :3:9: error: redeclaration of local constant 'a'
// :2:11: note: previous declaration here