* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist21.C
blob6492b2664e2bce04232edf6119b1e01c16b872b2
1 // PR c++/40689
2 // { dg-do compile { target c++11 } }
4 class X
6  public:
7   X(): data {1,2} {} // { dg-error "too many initializers" }
8  private:
9   const short data[1];
12 int f(int n)
14   const float * pData = new const float[1] { 1.5, 2.5 }; // { dg-error "too many initializers" }
16   return 0;