blob: 5478bb79c2d5cd007123dc46fdd1cb096edb35b4 [file] [log] [blame]
extern bool was_f_in_Bar_destroyed;
#include "ctor1.h"
Foo::~Foo()
{
was_f_in_Bar_destroyed=true;
}
Bar::~Bar()
#if __cplusplus < 201103L
throw(int)
#else
noexcept(false)
#endif
{
throw 1;
}