2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / compat / eh / dtor1_y.C
bloba1ec41a2764483e0eb96a8b55bcbb95622bac9e4
1 extern int r;
2 int ad;
4 #include "dtor1.h"
6 A::~A () { ++ad; }
8 B::~B ()
9 try
10   {
11     throw 1;
12   }
13 catch (...)
14   {
15     if (!ad)
16       r = 1;
17     return;
18   }