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