blob: d335a89574487d271780ea932743c2690d5568a9 [file] [log] [blame]
library test;
T f<T>() => null;
class B {
B(int x);
}
class C extends B {
C() : super(f());
}
main() {}