Sign in
dawn
/
dawn
/
c8fb20b38ba33dcaf4a7d688c5508a4b729033d0
/
.
/
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
;
}
}
}