[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / complit6.C
blobd3187a65b2dd0d2ed2fb36f37c8dd80703a4ef39
1 // PR c++/20103
2 // { dg-options "" }
4 struct A
6   A(const A&);
7 };
9 struct B
11   A a;
14 void foo(B);
16 void bar(A &x)
18   foo((B){x});