xref: /aosp_15_r20/external/skia/resources/sksl/errors/SwitchWithContinueInside.sksl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1uniform int value;
2
3void main() {
4    while (true) switch (value) { default: continue; }
5    for (;;) switch (value) { case 5: continue; }
6}
7
8/*%%*
9continue statement cannot be used in a switch
10continue statement cannot be used in a switch
11*%%*/
12