blob: 78cfa4fc844749c155d23d5ab825e819d0fa595d [file] [log] [blame]
Foo<int> bar() => foo;
class A {
Foo<int> f = throw '';
void test() {}
}
int foo<T>(T x) => 3;
main() {}
typedef Foo<S> = S Function<T>(T x);
void test1() {}