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