blob: 89f941817ce6bf674cf9918d4228783dedfcf74f [file] [log] [blame]
// PR c++/25950
struct X {
X();
explicit X(const X&);
};
void g(const X&);
int main()
{
g(X());
}