PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / reftemp1.C
blob89f941817ce6bf674cf9918d4228783dedfcf74f
1 // PR c++/25950
3 struct X {
4   X();
5   explicit X(const X&);
6 };
8 void g(const X&);
10 int main()
12   g(X());