gcc/libgo/go/debug/dwarf/testdata/cycle.c

8 lines
103 B
C

typedef struct aaa *AAA;
typedef AAA BBB;
struct aaa { BBB val; };
AAA x(void) {
return (AAA)0;
}