* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-new1.C
blobe880486bfb52f963978284239d4e742e98a9db7d
1 // { dg-do compile { target c++11 } }
3 struct A
5   A() = default;
6   A(const A&) = default;
7 };
9 void f()
11   new A{A()};