Fix type parsing
[tinycc.git] / tests / tests2 / 81_types.c
blob542d0663c3722188bf86f210ef455cb9463cd831
1 /* The following are all valid decls, even though some subtypes
2 are incomplete. */
3 enum E *e;
4 const enum E *e1;
5 enum E const *e2;
6 struct S *s;
7 const struct S *s1;
8 struct S const *s2;
9 int main () { return 0; }