Sign in
dawn
/
dawn.git
/
d3fa3f0e23cf8da1db77a464260d0fa8dffc3c4e
/
.
/
test
/
tint
/
statements
/
switch
/
fallthrough.wgsl
blob: 667a8f2f6ea2feb02f2f699f180e1c0035a75e9c [
file
]
@compute
@workgroup_size
(
1
)
fn f
()
{
var
i
:
i32
;
switch
(
i
)
{
case
0
:
{
fallthrough
;
}
default
:
{
break
;
}
}
}