Sign in
dawn
/
dawn
/
a880e661db50f34f2e568c8e6317c473f921de1f
/
.
/
test
/
tint
/
loops
/
loop_with_continuing.wgsl
blob: 862a53df8e60e55d61e0acf1088bb5b159869fd2 [
file
] [
log
] [
blame
]
fn f
()
->
i32
{
var
i
:
i32
;
loop
{
if
(
i
>
4
)
{
return
i
;
}
continuing
{
i
=
i
+
1
;
}
}
}