blob: 01a188f21bd2ddc2a1217cb7c995ff93b8ed10a8 [file] [log] [blame]
struct leaf {
int numbers[3];
};
struct node {
struct leaf* ptr;
};
void foo(struct node *n) { (void) n; }