aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/undeclared_identifier_in_unanalyzed_branch.zig
blob: 30194791f3ef1b2798b24a2e7d80bcbc234362bc (plain)
1
2
3
4
5
6
7
8
9
export fn a() void {
    if (false) {
        lol_this_doesnt_exist = nonsense;
    }
}

// error
//
// :3:9: error: use of undeclared identifier 'lol_this_doesnt_exist'