dawn-cmake/test/switch-fallthrough-must-not...

14 lines
242 B
WebGPU Shading Language
Raw Normal View History

# v-switch05: line 9: a fallthrough statement must not appear as the last statement in last clause
# of a switch
[[stage(vertex)]]
fn main() -> void {
var a: i32 = -2;
switch (a) {
default: {
fallthrough;
}
}
return;
}