FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping5.C
blob4572da7652af24cb1ca37c7c9cd9159a7991e670
1 // Bug: g++ thinks that A defines operator delete, and tries to call it.
2 // Build don't link:
4 struct A {
5   ~A () { ::operator delete (0); }
6 };