ref: d7cd0ce876107c05e34c7c00cef311e2023a9352
dir: /cc1/tests/test043.c/
/* name: TEST043 description: Test for double typedef (taken from plan9 kernel) error: output: S2 Clock0link M6 P "clock M8 P "link G9 S2 "cl0 G11 F "main { \ G9 M6 .P @F c0 r #I0 } */ typedef struct Clock0link Clock0link; typedef struct Clock0link { void (*clock)(void); Clock0link* link; } Clock0link; Clock0link cl0; int main(void) { (*cl0.clock)(); return 0; }