xref: /aosp_15_r20/external/skia/resources/sksl/errors/ContinueOutsideLoop.rts (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1void outside_for() {
2    for (int x=0; x<10; ++x) {}
3    continue;
4}
5
6void inside_switch() {
7    switch (1) {
8        default: continue;
9    }
10}
11
12/*%%*
13continue statement must be inside a loop
14continue statement must be inside a loop
15*%%*/
16