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