2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / dtor2-aux.cc
blob9e87cc817d107235bbdfee91e62bba776e3de092
1 // { dg-do compile }
2 // { dg-options "" }
4 #include "dtor2.h"
6 A::A () {}
7 A::~A () {}
9 void B::mb () {}
10 B::B (int) {}
11 B::~B () {}
13 void C::mc () {}
14 C::C (int x) : B (x) {}
16 D::~D () {}