aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/dtor2.C
blob: 201068c415bc38396c6ce2d1b3677659eca5854f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link:

class K {
public:
  friend class C;

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

K K::qwe;