blob: 2e872938f0119f4ed39a1535c30024fda6096970 [file] [log] [blame]
library test;
class B<T> {
B<T> operator +(B<T> other) => null;
}
class C<T> {
B<F<T>> get x => null;
void set x(B<F<T>> value) {}
}
main() {}
typedef void F<T>(T x);
void test(C<num> c) {}