FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / eh32.C
blob12d601c883f737447e73db3bac08d03e4ca8b20b
1 // Build don't link:
2 // Special g++ 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()