2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / delete2.C
blobc6230eef125b14f0865a5e0877c345833a34a838
1 // { dg-do assemble  }
2 // PRMS Id: 5003
3 // Bug: g++ complains about calling the destructor for a const object.
5 struct A {
6 public:
7   ~A();
8 };
10 const A foo ();
12 void bar()
14   A n;
15   n = foo();            // { dg-bogus "" } deleting const