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