blob: 8c4d7fdde9bfd4582852265bf5b0d2cdd43cd604 [file] [log] [blame]
// { dg-do assemble }
// Bug: g++ thinks that A defines operator delete, and tries to call it.
struct A {
~A () { ::operator delete (0); }
};