blob: 5ceeb3a2c3c250c39bd7b2a482c281fe85151a75 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/rasta/bad_continue.dart:6:3: Error: A continue statement can't be used outside of a loop or switch statement.
// Try removing the continue statement.
// continue here;
// ^^^^^^^^
//
// pkg/front_end/testcases/rasta/bad_continue.dart:6:12: Error: Can't find label 'here'.
// Try defining the label, or correcting the name to match an existing label.
// continue here;
// ^
//
// pkg/front_end/testcases/rasta/bad_continue.dart:7:10: Error: A continue statement can't be used outside of a loop or switch statement.
// Try removing the continue statement.
// label: continue label;
// ^^^^^^^^
// Unhandled errors:
//
// pkg/front_end/testcases/rasta/bad_continue.dart:6:3: Error: A continue statement can't be used outside of a loop or switch statement.
// Try removing the continue statement.
// continue here;
// ^^^^^^^^
//
// pkg/front_end/testcases/rasta/bad_continue.dart:7:10: Error: A continue statement can't be used outside of a loop or switch statement.
// Try removing the continue statement.
// label: continue label;
// ^^^^^^^^
library;
import self as self;
static method main() dynamic {
invalid-expression "pkg/front_end/testcases/rasta/bad_continue.dart:6:12: Error: Can't find label 'here'.
Try defining the label, or correcting the name to match an existing label.
continue here;
^";
#L1:
break #L1;
}