blob: e8593a573f0839f626ec00d0291f293761d4c183 [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 class Object, in a factory constructor, in an instance
* variable initializer, a constructor initializer 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 variable initializer.
* @compile-error
* @author msyabro
* @reviewer kaigorodov
*/
class S {
f() {}
}
class A extends S {
static var v = super.f();
}
main() {
try {
A.v;
} catch(e) {}
}