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