summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/access10.C
blob: 6db610c5010567407e934db597b551b1484f331f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PRMS Id: 4839
// Bug: The initializer of a static member of a class has the same acess
// rights as a member function.  g++ doesn't realize that.
// Build don't link:

class X 
{
  X (int);
  static X foo;
public:
  void dummy();
};

X X::foo = 9;