github.com/lovishpuri/go-40569/src@v0.0.0-20230519171745-f8623e7c56cf/debug/dwarf/testdata/cycle.c (about)

     1  typedef struct aaa *AAA;
     2  typedef AAA BBB;
     3  struct aaa { BBB val; };
     4  
     5  AAA x(void) {
     6      return (AAA)0;
     7  }