dtor2.C   [plain text]


// Build don't link:

class K {
public:
  friend class C;

private:
  static K qwe;
  K();
  ~K();
}; 

K K::qwe;