xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/eh/ctor1.h (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 struct Foo
2 {
3   ~Foo ();
4 };
5 
6 struct Bar
7 {
8   ~Bar ();
9   Foo f;
10 };
11