blob: 980ab88c3c6da6f7c0f01460ae88b69fec1603b5 [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() {}