aboutsummaryrefslogtreecommitdiff
path: root/test/cases/variable_shadowing.1.zig
blob: 2a2945a65f7e874755d799e69ed8f605b30cc8b9 (plain)
1
2
3
4
5
6
7
8
9
var testing: i64 = 10;
pub fn main() void {
    var testing: i64 = 20;
}

// error
//
// :3:9: error: local variable shadows declaration of 'testing'
// :1:1: note: declared here