| Index: tests/language/execute_finally7_test.dart
|
| diff --git a/tests/language/execute_finally7_test.dart b/tests/language/execute_finally7_test.dart
|
| index a87880a57ea8e6ed024d3d0c986025fa572138da..265e4c17cfa0263b97f4c08da625f5fdfb307cd8 100644
|
| --- a/tests/language/execute_finally7_test.dart
|
| +++ b/tests/language/execute_finally7_test.dart
|
| @@ -33,7 +33,7 @@ class Helper {
|
| for(int i = 0; i < 10; i++) {
|
| a[i]();
|
| }
|
| - } catch (MyException exception) {
|
| + } on MyException catch (exception) {
|
| k += 100;
|
| print(exception.message_);
|
| b();
|
|
|