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