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

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