* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist95.C
blobfe2c8f61ba0bd613c63f4a9f9cfad69714822d44
1 // PR c++/51747
2 // { dg-do compile { target c++11 } }
4 struct B {};
5 struct D : B {D(B b) : B{b} {}};