summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.ctf/cross-tu-cyclic-1.c
blob: fe52b9ef22042c29a387c9296a30417f0c1d6185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
struct A;
struct B
{
  int foo;
  struct A *bar;
};

struct A
{
  long a;
  struct B *foo;
};

static struct A *foo __attribute__((used));

int main()
{
}