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