Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
labeled_break_not_found.zig
pretty
plain
permalink
blame
history
•
11 lines
•
172 B
1
export fn entry() void {
2
blah: while (true) {
3
while (true) {
4
break :outer;
5
}
6
}
7
}
8
9
// error
10
//
11
// :4:20: error: label not found: 'outer'