File size: 103 Bytes
4bcc2be | 1 2 3 4 5 6 7 8 | typedef struct aaa *AAA;
typedef AAA BBB;
struct aaa { BBB val; };
AAA x(void) {
return (AAA)0;
}
|
4bcc2be | 1 2 3 4 5 6 7 8 | typedef struct aaa *AAA;
typedef AAA BBB;
struct aaa { BBB val; };
AAA x(void) {
return (AAA)0;
}
|