blob: 12d601c883f737447e73db3bac08d03e4ca8b20b [file] [log] [blame]
// Build don't link:
// Special g++ Options: -fexceptions
class Base {
public:
virtual ~Base() throw();
};
Base::~Base() throw()
{
}
class Foo : public Base {
public:
virtual ~Foo() throw();
};
Foo::~Foo() throw()
{
}