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

class S 
{
  ~S();
public:
  friend void f();
};


S::~S()
{
  static S s;
}