* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted49.C
blob357be419db77b9fdb5bd175857d48ca8789a5808
1 // PR c++/60980
2 // { dg-do compile { target c++11 } }
4 struct x0
6   x0 () = default;
7 };
8 struct x1
10   x0 x2[2];
11   void x3 ()
12   {
13     x1 ();
14   }