[RISC-V] add implied extension repeatly until stable
[official-gcc.git] / gcc / testsuite / g++.dg / compat / eh / ctor1.h
blobe88a62d223a7ca9af698ca59dbe71ae7c45eb49c
1 struct Foo
3 ~Foo ();
4 };
6 struct Bar
8 ~Bar ()
9 #if __cplusplus < 201103L
10 throw(int)
11 #else
12 noexcept(false)
13 #endif
15 Foo f;