Sign in
dawn
/
dawn
/
575bb297b80052f642dd1f3f54624fd56229c5c3
/
.
/
test
/
tint
/
statements
/
for
/
continuing
/
array_ctor.wgsl.expected.ir.msl
blob: 40a61e055c839425f974330b33c242b881b48430 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
void
f
()
{
int
i
=
0
;
{
while
(
true
)
{
if
(
false
)
{
}
else
{
break
;
}
i
=
(
i
+
1
);
continue
;
}
}
}