| Index: tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| index 72d8cd725a3e2333f652afe41fdb2b632211bb73..379a16af0cd1f1103aac50cfaaaf72cf6985706f 100644
|
| --- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| +++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| @@ -56,6 +56,7 @@ main() {
|
| var z3 = x ??= y2;
|
| var w = x == null ? null : x.toString();
|
| for (int i = 0; i < 10; i++) {
|
| + if (i == 5) continue;
|
| x = i;
|
| if (i == 5) break;
|
| }
|
|
|