blob: 1b15b094f853b435fe2a1390d3181a9df40c4c4a [file] [log] [blame]
@compute @workgroup_size(1)
fn f() {
var i : i32 = 0;
loop {
switch(i) {
case 0: {
continue;
}
default: {
break;
}
}
continuing {
i = (i + 1);
break if (i >= 4);
}
}
}