blob: 0b43cccf8ba228642c5322768dca1719d9f142e3 [file] [log] [blame]
// @dart = 2.9
library test;
typedef void F<T>(T x);
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) {}
}
void test(C<num> c) {}
main() {}