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