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