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