1[[stage(compute), workgroup_size(1)]] 2fn f() { 3 var i : i32; 4 switch(i) { 5 case 0: { 6 fallthrough; 7 } 8 default: { 9 break; 10 } 11 } 12} 13