Sign in
dawn
/
dawn
/
a8bc2962598a16b369840059425754da3c530522
/
.
/
test
/
tint
/
loops
/
while_with_continue.wgsl.expected.wgsl
blob: bbbd5fdd1801a7f4d0ece85486650908f5d5e044 [
file
] [
log
] [
blame
]
fn f
()
->
i32
{
var
i
:
i32
;
while
((
i
<
4
))
{
i
=
(
i
+
1
);
continue
;
}
return
i
;
}