Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
labeled_continue_not_found.zig
pretty
plain
permalink
blame
history
•
12 lines
•
210 B
1
export fn entry() void {
2
var i: usize = 0;
3
blah: while (i < 10) : (i += 1) {
4
while (true) {
5
continue :outer;
6
}
7
}
8
}
9
10
// error
11
//
12
// :5:23: error: label not found: 'outer'