blob: d154090914e674c7c2ce099bc1613a81692e042b [file] [log] [blame]
// @dart = 2.9
library test;
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() {}
main() {}