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