1struct A;
2struct B { struct A *a; };
3struct A { struct B b; int foo; struct B b2; };
4
5struct A a __attribute__((__used__));
6