Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
resources
/
sksl
/
workarounds
/
LoopCondition.sksl
blob: 2ca746b2ba08ab1bd89b1e62a83a3a79eee42d56 [
file
] [
log
] [
blame
]
/*#pragma settings AddAndTrueToLoopCondition*/
void
main
()
{
int
c
=
0
;
for
(
int
i
=
0
;
i
<
4
||
c
<
10
;
++
i
)
{
c
+=
1
;
}
}