Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.mike / eh32.C
blob53822c7431c36743ae59f88ff445584c0874f53b
1 // { dg-do assemble  }
2 // { dg-options "-fexceptions" }
4 class Base {
5 public:
6     virtual ~Base() throw();
7 };
8  
9 Base::~Base() throw()
13 class Foo : public Base {
14 public:
15     virtual ~Foo() throw();
18 Foo::~Foo() throw()