Sign in
dawn
/
tint
/
2ba8315b02917cc7400ccdd06f0daec5f55379ba
/
.
/
test
/
statements
/
for
/
basic.wgsl.expected.wgsl
blob: 6a66161aa7d0e76471766b5dc8d3f3a61442d8bf [
file
] [
log
] [
blame
]
fn some_loop_body
()
{
}
fn f
()
{
{
var
i
:
i32
=
0
;
loop
{
if
(!((
i
<
5
)))
{
break
;
}
some_loop_body
();
continuing
{
i
=
(
i
+
1
);
}
}
}
}