Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/libctf/testsuite/libctf-lookup/ambiguous-struct-B.c
2023-03-06 14:48:14 +01:00

5 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__));