aboutsummaryrefslogtreecommitdiff
path: root/test/cases/break_continue.1.zig
blob: 9e4f79bd14d7a1340b9fcbc02c271790c642bd07 (plain)
1
2
3
4
5
6
7
8
pub fn main() void {
    foo: while (true) {
        break :foo;
    }
}

// run
//