data/method/gdb/gdb-13.2/libctf/testsuite/libctf-lookup/ambiguous-struct-B.c

6 lines
131 B
C

struct A;
struct B { struct A *a; };
struct A { struct B b; int foo; struct B b2; };
static struct A a __attribute__((__used__));