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