xref: /netbsd-src/external/gpl3/gdb/dist/libctf/testsuite/libctf-lookup/ambiguous-struct-B.c (revision cb63e24e8d6aae7ddac1859a9015f48b1d8bd90e)
1 struct A;
2 struct B { struct A *a; };
3 struct A { struct B b; int foo; struct B b2; };
4 
5 static struct A a __attribute__((__used__));
6