2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping5.C
blob8c4d7fdde9bfd4582852265bf5b0d2cdd43cd604
1 // { dg-do assemble  }
2 // Bug: g++ thinks that A defines operator delete, and tries to call it.
4 struct A {
5   ~A () { ::operator delete (0); }
6 };