Sign in
dawn
/
tint
/
7274b8ac19c434d86991c08044f7c45d537c888d
/
.
/
test
/
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
;
}
}
}