2017-04-10 13:32:00 +02:00

8 lines
103 B
C

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