Sign in
skia
/
skia
/
7e33d95f4f881f7d304ea81db39d20be4dab4416
/
.
/
resources
/
sksl
/
errors
/
ContinueOutsideLoop.sksl
blob: 0664576900bdc7f782312bb44b69b14500a61453 [
file
] [
log
] [
blame
]
void
outside_for
()
{
for
(;;)
{}
continue
;
}
void
inside_switch
()
{
switch
(
1
)
{
default
:
continue
;
}
}