| Index: dart/tests/language/implicit_this_test.dart
|
| diff --git a/dart/tests/language/implicit_this_test.dart b/dart/tests/language/implicit_this_test.dart
|
| index fca5977041506f1654411cdd27dd021b2534bdfd..08b0eaaca8b3f202478021cb4904bf22b0993c05 100644
|
| --- a/dart/tests/language/implicit_this_test.dart
|
| +++ b/dart/tests/language/implicit_this_test.dart
|
| @@ -20,7 +20,7 @@ class SubAbstract1 extends Abstract { } /// 01: static type warning
|
| // This class is implicitly abstract as it declares an abstract getter
|
| // method.
|
| class SubAbstract2 extends Abstract {
|
| - abstract get x();
|
| + abstract get x;
|
| }
|
|
|
| // This class does not implement "x" either, but it is not marked
|
| @@ -28,7 +28,7 @@ class SubAbstract2 extends Abstract {
|
| class SubSubAbstract2 extends SubAbstract2 { } /// 04: static type warning
|
|
|
| class Concrete extends Abstract {
|
| - get x() => 7;
|
| + get x => 7;
|
| }
|
|
|
| class SubConcrete extends Concrete {
|
|
|