blob: 8de56dd5936a1cc28e8bc37168c48016a44c75c7 [file] [log] [blame]
// Unhandled errors:
//
// pkg/front_end/testcases/rasta/try_label.dart:9:5: Error: A continue statement can't be used outside of a loop or switch statement.
// Try removing the continue statement.
// continue L;
// ^^^^^^^^
library;
import self as self;
static method main() dynamic {
#L1:
try {
break #L1;
}
finally {
break #L1;
}
}