* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / dc7.C
blobe48741e07130ea9b0f198578ff4059a338e79fb7
1 // PR c++/58255
2 // { dg-do compile { target c++11 } }
4 struct A {
5   explicit A() { }
6   A(int x) : A() { }
7 };