blob: 69e660e37043e1977b7243d7ca85f687b3a22772 [file] [log] [blame]
library test;
typedef void F<T>(T x);
class C<T> {
F<T> operator [](int i) => throw '';
}
F<num> test(C<num> c) {}
main() {}