* g++.dg/eh/new1.C: XFAIL on AIX.
[official-gcc.git] / gcc / testsuite / g++.dg / eh / init-temp2.C
blob9cf87976e3bd540c654b340a14222cf14e1d187b
1 // PR c++/34196
2 // { dg-options "-O -Wuninitialized" }
4 template <class _Tp> class AutoPtr
6   _Tp* _M_ptr;
8 public:
9   explicit AutoPtr(_Tp* __p = 0)  : _M_ptr(__p) {}
11   ~AutoPtr() throw(int) { delete _M_ptr; }
14 struct A
16   A() { }
17   ~A() throw(int) { throw 1; }
20 struct B
22   virtual ~B() throw(int);
25 B* f (const A &s) { throw 1; }
27 int
28 main()
30   AutoPtr<B> wt(f(A()));