aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/static3.C
blob: 5c52f0e217dde47ef71eda179935f2643612ffaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Build don't link: 
// GROUPS passed static
class foo{
public:
  static void  bar( int i ){ value = i; }
  static int  value;// ERROR - .*
};

const int  foo::value = 0; // should be an error.// ERROR - .*

int main(){
  foo::bar( 1 );
  return 0;
}