(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
lto/
20100720-1_1.c
       1  struct X {
       2    int b;
       3  };
       4  
       5  typedef struct list_node *list;
       6  
       7  struct list_node {
       8    list next;
       9    struct X *value;
      10  };
      11  
      12  list g(void)
      13  {
      14    return 0;
      15  }