2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / dtor2.C
blob48f89bcc2a14f37c43d8ab780334cf9ce245a402
1 // { dg-do assemble  }
3 class K {
4 public:
5   friend class C;
7 private:
8   static K qwe;
9   K();
10   ~K();
11 }; 
13 K K::qwe;