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