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