summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/static3.C
blob: efa094d116ed8738d8ec04ac524590e13ccd5d6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do assemble  }

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


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