2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist21.C
blob9412a0851708d308c7fdb30b76d7869731a5b595
1 // PR c++/40689
2 // { dg-options "-std=c++0x" }
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" }
15   pData = new const float[n] { 1.5, 2.5 }; // { dg-warning "array size" }
17   return 0;