1struct B;
2
3struct A {
4  static B b;
5};
6
7struct B {
8  A a;
9};
10
11B A::b;
12B b;
13
14int main(int,char **)
15{
16  return 0;
17}
18