blob: 4572da7652af24cb1ca37c7c9cd9159a7991e670 [file] [log] [blame]
// Bug: g++ thinks that A defines operator delete, and tries to call it.
// Build don't link:
struct A {
~A () { ::operator delete (0); }
};