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

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