* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor17.C
blobed82a14e6512175b2aa6a9b7ecb3cdd98316c5f7
1 // PR c++/57820
2 // { dg-do compile { target c++11 } }
4 struct C
6   int a = 2;
7   int b = a + 1;
9   constexpr C() {}
12 C c;
13 constexpr C d;