aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/scoping5.C
blob: 4572da7652af24cb1ca37c7c9cd9159a7991e670 (plain)
1
2
3
4
5
6
// Bug: g++ thinks that A defines operator delete, and tries to call it.
// Build don't link:

struct A {
  ~A () { ::operator delete (0); }
};