Sign in
dawn
/
dawn
/
6e647fb401b75ce06f3e65e77e4dc591462b5781
/
.
/
test
/
tint
/
statements
/
switch
/
only_default_case.wgsl.expected.ir.msl
blob: ccf46b9c2f2fa099e8a77554857619526bdf5494 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int
i
=
0
;
int
result
=
0
;
switch
(
i
)
{
default
:
{
result
=
44
;
break
;
}
}
}