1struct S
2{
3  static int m1;
4};
5
6int S::m1;
7
8void
9foo(S&)
10{}
11