Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / compat / eh / ctor2.h
blobc6b9f40f8d9d58b5e4fac51953018f1d29350e08
1 struct VBase
3 virtual void f () {}
4 VBase();
5 ~VBase();
6 };
8 struct StreamBase
10 virtual ~StreamBase() {}
13 struct Stream : public virtual VBase, public StreamBase
15 Stream();
16 virtual ~Stream() {}
19 struct DerivedStream : public Stream
21 DerivedStream();