Sign in
skia
/
skia
/
3658238492093ca6039e939c34e8e721f5cbbc85
/
.
/
resources
/
sksl
/
errors
/
ContinueOutsideLoop.rts
blob: 6e557fa9ccc898dacf6d0dc45716b2e6f62141bd [
file
] [
log
] [
blame
]
void
outside_for
()
{
for
(
int
x
=
0
;
x
<
10
;
++
x
)
{}
continue
;
}
void
inside_switch
()
{
switch
(
1
)
{
default
:
continue
;
}
}
/*%%*
continue statement must be inside a loop
continue statement must be inside a loop
*%%*/