Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
e1f72f939232ea43324c901b39da80d9274bf969
/
.
/
resources
/
sksl
/
errors
/
ContinueOutsideLoop.sksl
blob: 0664576900bdc7f782312bb44b69b14500a61453 [
file
] [
log
] [
blame
]
John Stiles
6798e5d
2020-09-17 18:20:26 -0400
[
diff
] [
blame
]
1
void
outside_for
()
{
for
(;;)
{}
continue
;
}
2
void
inside_switch
()
{
switch
(
1
)
{
default
:
continue
;
}
}