* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nsdmi-list3.C
bloba554f935bd1de61f0c56628da3d981017a2ed352
1 // PR c++/54998
2 // { dg-do compile { target c++11 } }
4 class Foo {
5 public:
6 private:
7     static const int kRows = 4;
8     static const int kCols = 4;
10     union {
11         float m_n[kRows][kCols];
12         float m_m[kRows * kCols] = {
13             1.0f, 0.0f, 0.0f, 0.0f,
14             0.0f, 1.0f, 0.0f, 0.0f,
15             0.0f, 0.0f, 1.0f, 0.0f,
16             0.0f, 0.0f, 0.0f, 1.0f
17         };
18     };
21 Foo myFoo;