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