Sign in
dawn
/
dawn.git
/
ec0b64043567293ff2df9f05465e4dfd5f80d351
/
.
/
test
/
tint
/
switch
/
switch_multi_selector.wgsl
blob: 327fc0e05af9a7f5d5cfd814ee39ed1e6dc2fd84 [
file
]
fn a
()
{
var
a
=
0
;
switch
(
a
)
{
case
0
,
2
,
4
:
{
break
;
}
case
1
,
default
:
{
return
;
}
}
}