blob: a1abbfdb36a608ab39331c047b0630f00e865e8f [file] [log] [blame]
# v-switch03: line 7: the case selector values must have the same type as the selector expression
[[stage(vertex)]]
fn main() -> void {
var a: u32 = 2;
switch (a) {
case -1:{}
default: {}
}
return;
}