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