Chromium Code Reviews| Index: tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart |
| diff --git a/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart b/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart |
| index e346b111a9ef13d990d1f213839ae41cd4d0866f..6ae31748c1213c4d9b546d785094364b9e190eb6 100644 |
| --- a/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart |
| +++ b/tests/compiler/dart2js/simple_inferrer_postfix_prefix_test.dart |
| @@ -28,7 +28,7 @@ class A { |
| } |
| class B extends A { |
| - get foo() => 42; |
| + get foo => 42; |
| operator[](index) => 42; |
| returnString1() => super.foo--; |