| Index: tests/compiler/dart2js/cps_ir/input/control_flow_3.dart
|
| diff --git a/tests/compiler/dart2js/cps_ir/input/control_flow_3.dart b/tests/compiler/dart2js/cps_ir/input/control_flow_3.dart
|
| index 51cead4101540fc2f193be2cb0bc5c93f23e9705..8335da497d8e233d07c41887da54aef87a5ae9f7 100644
|
| --- a/tests/compiler/dart2js/cps_ir/input/control_flow_3.dart
|
| +++ b/tests/compiler/dart2js/cps_ir/input/control_flow_3.dart
|
| @@ -1,4 +1,4 @@
|
| -foo(a) { print(a); return a; }
|
| +foo(a) { try { print(a); } finally { return a; } }
|
|
|
| main() {
|
| for (int i = 0; foo(true); i = foo(i)) {
|
|
|