aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/deduplicate_undeclared_identifier.zig
blob: 34501e3c518edfa5141bdb718afa7a1a09d4b09c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export fn a() void {
    x += 1;
}
export fn b() void {
    x += 1;
}

// error
// backend=stage2
// target=native
//
// :2:5: error: use of undeclared identifier 'x'
// :5:5: error: use of undeclared identifier 'x'