blob: 8c620197cb33f1d28133d94a960826686dc974f1 [file] [log] [blame]
library test;
import 'dart:async';
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() {}