FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / new2.C
blob4f293d1be971520a86e360372513837f9eff0bdb
1 // PRMS Id: 6267
2 // Special g++ Options: -Wno-deprecated -fno-exceptions
4 struct A {
5   int i;
6   A() { i = 2; }
7 };
8  
9 main()
11   A *p = new A ();