xref: /netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ctf/cross-tu-cyclic-2.c (revision 4b169a6ba595ae283ca507b26b15fdff40495b1c)
1 struct B;
2 struct A
3 {
4   long a;
5   struct B *foo;
6   struct C *bar;
7 };
8 
9 struct C
10 {
11   struct B *foo;
12   int b;
13 };
14 
15 static struct C *foo __attribute__((used));
16 static struct A *bar __attribute__((used));
17