f881fd3 ^
1 2 3 4 5 6 7 8 9 10
typedef struct I I; int incomp(I a); struct I { int i, j; }; int incomp(I a) {} typedef int b; int main() { I i; b b; incomp(i); }