zig/test/cases/break_continue.1.zig

9 lines
84 B
Zig

pub fn main() void {
foo: while (true) {
break :foo;
}
}
// run
//