3 // Copyright (C) 1999, 2001 Free Software Foundation
5 // by Alexandre Oliva <oliva@dcc.unicamp.br>
6 // simplified from bug report by K. Haley <khaley@bigfoot.com>
7 // based on analysis by Martin v. Loewis
9 // [class.dtor]/11: delete must be implicitly checked for
10 // accessibility only in the definition of virtual destructors,
11 // implicitly defined or not.
16 void operator delete(void *) {} // { dg-message "" } private
21 delete this; // { dg-error "" } delete is private
22 // An implicit invocation of delete is emitted in destructors, but
23 // it should only be checked in virtual destructors
24 } // { dg-bogus "" } not virtual
28 virtual ~baz() {} // { dg-error "" } delete is private in vdtor
31 struct bad : baz {} bad_; // { dg-message "" } delete is private in vdtor