mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08:00
5 lines
159 B
C
5 lines
159 B
C
|
struct A { struct B *foo; };
|
||
|
struct B { struct B *next; };
|
||
|
static struct A *a __attribute__((__used__));
|
||
|
static struct B *conflicty __attribute__((__used__));
|