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

// error
//
// :2:5: error: use of undeclared identifier 'x'
// :5:5: error: use of undeclared identifier 'x'