1 // PRMS Id: 4839
2 // Bug: The initializer of a static member of a class has the same acess
3 // rights as a member function. g++ doesn't realize that.
4 // Build don't link:
5
6 class X
7 {
8 X (int);
9 static X foo;
10 public:
11 void dummy();
12 };
13
14 X X::foo = 9;
15