blob: a746ec3cbd84b71d40921d47c921acd74df82ef8 [file] [log] [blame]
library test;
abstract class A {
static int get x => 0;
}
class B extends A {
static var x = f();
}
class C extends A {
static var x;
}
dynamic f() => null;
main() {}