summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-ctf/cross-tu-1.c
blob: 907d071d64e9d6265df80416bbc691092930d1bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct B
{
  int foo;
};

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

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