master
 1const expect = @import("std").testing.expect;
 2
 3test "while continue" {
 4    var i: usize = 0;
 5    while (true) {
 6        i += 1;
 7        if (i < 10)
 8            continue;
 9        break;
10    }
11    try expect(i == 10);
12}
13
14// test