2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / compat / eh / ctor2_y.C
blob00ba92000e4e764366ba832542b7d4e64b854127
1 extern int r;
2 void *p;
4 #include "ctor2.h"
6 VBase::VBase ()
8   p = this;
11 VBase::~VBase ()
13   if (p != this) r = 1;
16 Stream::Stream () {}
17 DerivedStream::DerivedStream ()
19   throw 1;