android13/external/libabigail/tests/data/test-abidiff/test-PR27985-v1.c

12 lines
113 B
C

struct leaf
{
int numbers[3];
};
struct node
{
struct leaf* ptr;
};
void foo(struct node *n) { (void) n; }