* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / union8.C
blob11b9656f7450d7af11151706a300ee7e98c2c0ce
1 // PR c++/78890
2 // { dg-do compile { target c++11 } }
4 union Test1 {
5   static int kConstant;
6 };
8 union Test2 {
9   static const int kConstant;
12 const int Test2::kConstant = 10;
14 int k;
16 union Test3 {
17   static int& kRef;
20 int& Test3::kRef = k;
22 union Test4 {
23   static const int& kRef;
26 const int& Test4::kRef = 10;