| Index: tests/language/implicit_super_constructor_call_test.dart
|
| diff --git a/tests/language/implicit_super_constructor_call_test.dart b/tests/language/implicit_super_constructor_call_test.dart
|
| index 11d2deee76296801b36f81bbf653bd58eb1797d5..70a34af25a505ddb7ac1230ee5d4c7e8000b2529 100644
|
| --- a/tests/language/implicit_super_constructor_call_test.dart
|
| +++ b/tests/language/implicit_super_constructor_call_test.dart
|
| @@ -9,10 +9,9 @@ import "package:expect/expect.dart";
|
| class A {
|
| final x;
|
|
|
| - @NoInline
|
| + @NoInline()
|
| A({this.x: "foo"}) {
|
| Expect.equals("foo", x.toString());
|
| - try {} catch (_) {}; // Make sure it really does not get inlined.
|
| }
|
| }
|
|
|
|
|