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