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

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