blob: b03de79ab17691e0ca3d61861f9355f39543b37f [file] [log] [blame]
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() {}