blob: b250af569938916c01c9639fe78df6a5ce14144e [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 = throw '';
void test() {}
}
main() {}