blob: ea3d3ff1b2a324502dd07b128b4851c9e00bf156 [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 Instance methods are functions (9) whose declarations are
* immediately contained within a class declaration and that are not declared
* static. The instance methods of a class C are those instance methods declared
* by C and the instance methods inherited by C from its superclass.
* . . .
* A method declaration may conflict with other declarations (10.11).
* Let C be a class. It is no compile-time error if C declares a
* • static member with basename n, and has an instance member with basename n.
*
* @description Checks that it is no compile-time error when a class declares
* an instance method with the same name as a static field in its superclass.
* @issue 27476
* @author kaigorodov
*/
class A {
static double f;
}
class C extends A {
bool f(int x, [String xx]) {
return true;
}
}
main() {
new C().f(1, "");
}