Sign in
dawn
/
tint
/
refs/heads/chromium/4626
/
.
/
test
/
switch
/
fallthrough.wgsl.expected.msl
blob: 93fa98e1d9429cbe36871183de8ae51fa6297ce4 [
file
] [
log
] [
blame
] [
edit
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int
i
=
0
;
switch
(
i
)
{
case
0
:
{
/* fallthrough */
}
default
:
{
break
;
}
}
return
;
}