blob: 2b0be853b51f3fdcdbfee95a6ecc484d78a919b9 [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 => throw '';
void set x(B<F<T>> value) {}
}
void test(C<num> c) {}
main() {}