blob: ba53e1c0e43ac80b93eaa06550abac33dff7eec3 [file] [log] [blame]
// @dart = 2.9
library test;
main() {}
void f0(List<int> a) {}
void f1({List<int> a}) {}
void f2(Iterable<int> a) {}
void f3(Iterable<Iterable<int>> a) {}
void f4({Iterable<Iterable<int>> a}) {}
void test() {}