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