#include <iostream>

struct A
{
	A() { throw 5; }
	~A() { std::cout << "destructor!\n"; }
};

int main()
{
	try
	{
		A a;
	}
	catch (...)
	{}
}