* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist20.C
blob0ee37e5864852754cf8cad0e55b36d147984bfac
1 // PR c++/40689
2 // { dg-do compile { target c++11 } }
4 class X
6  public:
7   X(): data {1,2,3,4,5} {}
8  private:
9   const short data[5];
12 int main()
14   const float * pData = new const float[4] { 1.5, 2.5, 3.5, 4.5 };
16   return 0;