blob: c0bc672aadf5af0029928bf6549c560c62b4cc67 [file] [log] [blame]
// @dart = 2.9
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) {}