| library; |
| // |
| // Problems in library: |
| // |
| // pkg/front_end/testcases/coverage/from_co19/continue_label_t03.dart:13:9: Error: A continue statement can't be used outside of a loop or switch statement. |
| // Try removing the continue statement. |
| // continue L; // Error |
| // ^^^^^^^^ |
| // |
| // pkg/front_end/testcases/coverage/from_co19/continue_label_t03.dart:13:9: Error: Can't continue at 'L' in a different function. |
| // continue L; // Error |
| // ^^^^^^^^^^ |
| // |
| import self as self; |
| import "dart:core" as core; |
| |
| static method foo() → void { |
| core::int counter = 0; |
| invalid-expression "pkg/front_end/testcases/coverage/from_co19/continue_label_t03.dart:13:9: Error: Can't continue at 'L' in a different function. |
| continue L; // Error |
| ^^^^^^^^^^"; |
| } |