aboutsummaryrefslogtreecommitdiff
path: root/testcases/typedef4.c
blob: 0aeb0f4ede1ddcd7eed3ee08aba319e7ecad912a (plain) (blame)
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);
}