2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb58.C
blob566cf9a783186a5e1c0341eee6ce09ad12bcbf9f
1 // { dg-do run  }
2 // { dg-options "" }
3 // Test for g++ array init extension 
5 class A {
6 public:
7         A(int i) {}
8 private:
9         A( const A & ) {}
12 main()
14   A *list = new A[10](4);