1struct S
2{
3  static char m0;
4  static int m1;
5};
6
7char S::m0;
8int S::m1;
9
10void
11foo(S&)
12{
13  S::m0 = 1;
14  S::m1 = 2;
15}
16