aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/use_of_undeclared_identifier.zig
blob: 2c90a7c718f9212d2361e94a8d0ba103bad5ed40 (plain)
1
2
3
4
5
6
7
8
9
export fn f() void {
    b = 3;
}

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