* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-union3.C
blobecae28dcc5bde7b40df361616d0a43c27989de8b
1 // PR c++/51675
2 // { dg-do compile { target c++11 } }
4 union foo
6   int x;
7   short y;
9   constexpr foo(): x(0) { }
12 constexpr foo f;