blob: cbd649ceb120a4e6f32168f5fd3d01688b4b0a4a [file] [log] [blame]
(int x, int x) foo1() => throw 0;
(int x, String x) foo2() => throw 0;
(int x, {int x}) foo3() => throw 0;
(int x, {String x}) foo4() => throw 0;
({int x, int x}) foo5() => throw 0;
({int x, String x}) foo6() => throw 0;
(int x, int x, int x) foo7() => throw 0;
main() {}