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