blob: 0d0b07a5cc8c15177c5bff39f4044e6701371441 [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion It is a compile error if an abstract member m is declared or
* inherited in a concrete class C unless:
* - m overrides a concrete member, or
* - C has a noSuchMethod() method distinct from the one declared in class
* Object.
* @description Checks that there is no compile errorif an abstract getter
* is declared in a concrete class overrides a concrete getter declared in a
* superclass.
* @static-clean
* @author ngl@unipro.ru
*/
class A {
int get foo => 22;
}
class C extends A {
int get foo;
}
main() {
new C();
}