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