2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist20.C
blobfcdb73f190c6e8f49213ef5ee85353a0a5b4ecd8
1 // PR c++/40689
2 // { dg-options "-std=c++0x" }
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;