blob: 3ec323d903f8b8020b884ef123af107c91e2c968 [file] [log] [blame]
library test;
import 'dart:async';
T f<T>() => throw '';
class D<T> {}
class E<T> extends D<T> {}
class B<T> {
D<T> x = throw '';
}
class C<U> extends B<Future<U>> {
E<Future<U>> get x => throw '';
void set x(Object x) {}
void g() {}
}
main() {}