| 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 4c88712bb59de4001f45a79751118363bf8f78c7..17716c13f2363a175e3c5dfd6de7307559663f03 100644
|
| --- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| +++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| @@ -54,6 +54,7 @@ main() {
|
| var z = x?.toString();
|
| var w = x == null ? null : x.toString();
|
| for (int i = 0; i < 10; i++) {
|
| + if (i == 5) continue;
|
| x = i;
|
| if (i == 5) break;
|
| }
|
|
|