Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
undeclared_identifier_in_unanalyzed_branch.zig
pretty
plain
permalink
blame
history
•
9 lines
•
170 B
1
export fn a() void {
2
if (false) {
3
lol_this_doesnt_exist = nonsense;
4
}
5
}
6
7
// error
8
//
9
// :3:9: error: use of undeclared identifier 'lol_this_doesnt_exist'