* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor6.C
blobfd87fe495a2522d260d4da64a35527c9d2a7f4af
1 // PR c++/47041
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fno-elide-constructors" }
5 struct S
7   int i;
8 };
10 S s = S ();