blob: c0d2a114fe5a183d0ed250c86722b5cf454c3bdc [file] [log] [blame]
library test;
class C<T> {
void Function(T) f<U>(U x) => (y) {};
}
void test(C<String> c) {}
main() {}