fix implicit struct casts
[cparser] / parsetest / cp_error006.c
1 typedef struct arc
2 {
3         struct arc *nextout, *nextin;
4         long ident;
5 } arc_t;
6
7 struct arc k;
8 arc_t l;
9
10 int main(void)
11 {
12         k = l;
13         return 0;
14 }