blob: 496953b756c61bb90000f813d99052d835b68c3c [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() {}