Match: Fold pow calls to ldexp when possible [PR57492]
[official-gcc.git] / gcc / testsuite / g++.dg / compat / eh / ctor1_y.C
blob5478bb79c2d5cd007123dc46fdd1cb096edb35b4
1 extern bool was_f_in_Bar_destroyed;
3 #include "ctor1.h"
5 Foo::~Foo()
7   was_f_in_Bar_destroyed=true;
10 Bar::~Bar()
11 #if __cplusplus < 201103L
12 throw(int)
13 #else
14 noexcept(false)
15 #endif
17   throw 1;