| Index: tests/language/try_catch_on_syntax_test.dart
|
| diff --git a/tests/language/try_catch_on_syntax_test.dart b/tests/language/try_catch_on_syntax_test.dart
|
| index 702854891f32378dd72f29dfc6bb6d0e6e5b126a..4611f610ced335c9a1f665abf82f8503a9c7fdb8 100644
|
| --- a/tests/language/try_catch_on_syntax_test.dart
|
| +++ b/tests/language/try_catch_on_syntax_test.dart
|
| @@ -13,7 +13,7 @@ class TryCatchTest {
|
| var foo = 0;
|
| try {
|
| throw new MyException1();
|
| - }
|
| + }
|
| on MyException3 catch (e) { } /// 01: compile-time error
|
| on on MyException2 catch (e) { } /// 02: compile-time error
|
| catch MyException2 catch (e) { } /// 03: compile-time error
|
|
|