blob: b5ba1ccb91e436d89b95e23f22c44a61f326371e [file] [log] [blame]
// @dart = 2.9
library test;
T generic<T>(a(T _), b(T _)) => null;
main() {}
typedef Iterable<num> F(int x);
typedef List<int> G(double x);