blob: b920a60b285e3255945f8aa4877327d4bcae0af1 [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-time error if a super method invocation occurs in
/// a top-level function or variable initializer, in an instance variable
/// initializer or initializer list, in class Object, in a factory constructor
/// or in a static method or variable initializer.
/// @description Checks that it is a compile-time error if a super method
/// invocation occurs in a static method.
/// @author msyabro
class S {
f() {}
}
class A extends S {
static staticMethod() {
super.f();
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
}
main() {
A.staticMethod();
}