2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / operators31.C
blob8ad9c472b3fe08d29fff96df91581e5505d1406f
1 // { dg-do assemble  }
2 // GROUPS passed operators
3 // opr-del file
4 // From: Eberhard Mattes <mattes@azu.informatik.uni-stuttgart.de>
5 // Date:     Thu, 4 Aug 94 08:19:20 +0200
6 // Subject:  delete [] A::s
7 // Message-ID: <9408040619.AA27602@azu.informatik.uni-stuttgart.de>
9 class A
11   char *s;
12 public:
13   void f ();
16 void A::f ()
18   delete [] A::s;