OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.mike / eh32.C
1 // Build don't link:
2 // Special g++ Options: -fexceptions
3
4 class Base {
5 public:
6     virtual ~Base() throw();
7 };
8  
9 Base::~Base() throw()
10 {
11 }
12  
13 class Foo : public Base {
14 public:
15     virtual ~Foo() throw();
16 };
17  
18 Foo::~Foo() throw()
19 {
20 }