blob: 14f624954f5db90441e09f28762fb11c22f58548 [file] [log] [blame]
library;
//
// Problems in library:
//
// 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;
// ^^^^^^^^
//
import self as self;
static method main() dynamic {
#L1:
try {
break #L1;
}
finally {
break #L1;
}
}