Chromium Code Reviews| 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 |
|
Johnni Winther
2015/03/11 08:27:52
This should be a compile-time error, but we unfort
herhut
2015/03/11 14:01:56
Acknowledged.
|
| + @NoInline() |
| A({this.x: "foo"}) { |
| Expect.equals("foo", x.toString()); |
| - try {} catch (_) {}; // Make sure it really does not get inlined. |
| } |
| } |