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

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