| 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 135058770e098337ca78c3746b180234e0421eb8..e2defb673c1f02eaa1eed93ddd566514ca508202 100644
|
| --- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| +++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
|
| @@ -48,6 +48,10 @@ main() {
|
| new Class('');
|
| Class.staticField;
|
| var x = null;
|
| + for (int i = 0; i < 10; i++) {
|
| + x = i;
|
| + if (i == 5) break;
|
| + }
|
| return x;
|
| }
|
| '''
|
|
|