blob: 800ea5e2db8175f96dd256fc5a78e2d5fd5bd7c2 [file] [log] [blame]
// @dart = 2.9
library test;
typedef void F<T>(T x);
class C<T> {
F<T> operator [](int i) => null;
}
F<num> test(C<num> c) {}
main() {}