1 struct leaf
2 {
3   int numbers[3];
4 };
5 
6 struct node
7 {
8   struct leaf* ptr;
9 };
10 
foo(struct node *n)11 void foo(struct node *n) { (void) n; }
12