OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / initlist21.C
1 // PR c++/40689
2 // { dg-options "-std=c++0x" }
3
4 class X
5 {
6  public:
7   X(): data {1,2} {} // { dg-error "too many initializers" }
8  private:
9   const short data[1];
10 };
11
12 int f(int n)
13 {
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" }
16
17   return 0;
18 }