OSDN Git Service

* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / dtor2.C
1 // Build don't link:
2
3 class K {
4 public:
5   friend class C;
6
7 private:
8   static K qwe;
9   K();
10   ~K();
11 }; 
12
13 K K::qwe;