1 struct X;
2 struct Y
3 {
4 struct X *p;
5 int i;
6 };
7
8 void foo (struct Y *p)
9 {
10 p->i = 1;
11 }
1 struct X;
2 struct Y
3 {
4 struct X *p;
5 int i;
6 };
7
8 void foo (struct Y *p)
9 {
10 p->i = 1;
11 }