blob: d6720bef1d87091d08a7c34fd8c9aabbf713c0e7 [file] [log] [blame]
# v-0008: line 6: switch statement must have exactly one default clause
[[stage(vertex)]]
fn main() -> void {
var a: i32 = 2;
switch (a) {
case 2: {}
default: {}
default: {}
}
return;
}