* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor4.C
blobc4947126bbbe49a6600ecc973c040b3afffa4693
1 // PR c++/46873
2 // { dg-do compile { target c++11 } }
4 struct S
6   int i:1;
7 };
9 struct T
11   const S s;
12   constexpr T (S a = S ()) : s (a) { }
15 T t;