blob: ab9a0295e21af42d001b404afe3e7f0780dab332 [file] [log] [blame]
@stage(compute) @workgroup_size(1)
fn f() {
for(var i : i32 = 0; (i < 4); i = (i + 1)) {
switch(i) {
case 0: {
continue;
}
default: {
break;
}
}
}
}