Sign in
dawn
/
dawn
/
cfb9de24e17f7c24577e6acbbf39325deee3ca25
/
.
/
test
/
tint
/
loops
/
while_with_continue_robustness.wgsl
blob: 683441dab6bf0e318e90d58f9524eb279eea1610 [
file
] [
log
] [
blame
]
fn f
()
->
i32
{
var
i
:
i32
;
while
(
i
<
4
)
{
i
=
i
+
1
;
continue
;
}
return
i
;
}
@compute
@workgroup_size
(
1
)
fn main
()
{
_
=
f
();
}