1 /* { dg-do compile } */
2 
3 struct a
4 {
5   virtual ~a();
6 };
7 struct b : virtual a { };
8 b a11;
9