No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / 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;