Sign in
dawn
/
dawn
/
3739c7e3a92f47085839bd337460fbd36a15913f
/
.
/
test
/
tint
/
statements
/
switch
/
fallthrough.wgsl
blob: 70691c8176629fcd26adaae122e6f40b89883888 [
file
] [
log
] [
blame
]
@stage
(
compute
)
@workgroup_size
(
1
)
fn f
()
{
var
i
:
i32
;
switch
(
i
)
{
case
0
:
{
fallthrough
;
}
default
:
{
break
;
}
}
}