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