1 // Build don't link: 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> 8 9 class A 10 { 11 char *s; 12 public: 13 void f (); 14 }; 15 f()16void A::f () 17 { 18 delete [] A::s; 19 } 20