2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / pr22358.C
blobdbce0f8a1a7195ed19c32f0ce6fad9dec1d31abb
1 /* { dg-do compile } */
3 struct a
5   virtual ~a();
6 };
7 struct b : virtual a { };
8 b a11;