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