diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2020-03-20 01:31:54 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2020-03-20 01:31:54 -0500 |
| commit | f01c7ea60dab54c14a9d44b359dcb025812470bc (patch) | |
| tree | accdc3bf2de15de6fcc8e5298ba20aaa78688493 /tests/include | |
| parent | 0d1445a8ac26bd842edf491a780fffc515fa1066 (diff) | |
| download | nimterop-f01c7ea60dab54c14a9d44b359dcb025812470bc.tar.gz nimterop-f01c7ea60dab54c14a9d44b359dcb025812470bc.zip | |
ast2 improve override/skip, duplicates
Diffstat (limited to 'tests/include')
| -rw-r--r-- | tests/include/tast2.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 7c595e4..5cabfac 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -1,3 +1,55 @@ +#define A 1 +#define B 1.0 +#define C 0x10 +#define D "hello" +#define E 'c' + +struct A0; +struct A1 {}; +typedef struct A2; +typedef struct A3 {}; +typedef struct A4 A4, *A4p; +typedef const int A5; +typedef int *A6; +typedef A0 **A7; +typedef void *A8; + +typedef char *A9p[3]; //, A9[4]; +typedef char *A10[3][6]; +typedef char *(*A11)[3]; +typedef struct A1 *A111[12]; + +typedef int **(*A12)(int, int b, int *c, int *, int *count[4], int (*func)(int, int)); +typedef int A13(int, int); + +struct A14 { volatile char a1; }; +struct A15 { char *a1; const int *a2[1]; }; + +typedef struct A16 { char f1; }; +typedef struct A17 { char *a1; int *a2[1]; } A18, *A18p; +typedef struct { char *a1; int *a2[1]; } A19, *A19p; + +typedef struct A20 { char a1; } A20, A21, *A21p; + +//Expression +typedef struct A22 { int **f1; int *f2[123+132]; } A22; + +//Unions +union U1 {int f1; float f2; }; +typedef union U2 { int **f1; int abc[123+132]; } U2; + +// Anonymous +//typedef struct { char a1; }; + +//struct A2 test_proc1(struct A0 a); + + + + + + + +// DUPLICATES #define A 1 #define B 1.0 @@ -18,6 +70,7 @@ typedef void *A8; typedef char *A9p[3]; //, A9[4]; typedef char *A10[3][6]; typedef char *(*A11)[3]; +typedef struct A1 *A111[12]; typedef int **(*A12)(int, int b, int *c, int *, int *count[4], int (*func)(int, int)); typedef int A13(int, int); |
