diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2020-03-21 12:51:12 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2020-03-21 20:07:45 -0500 |
| commit | be1e85934d39b7d0d8ef481593c0c4cbae333310 (patch) | |
| tree | e526062b394bccb1956412bd905c515f763acecf /tests/include | |
| parent | 4cfeea67a1152534e620db9832785f3ee5f9b259 (diff) | |
| download | nimterop-be1e85934d39b7d0d8ef481593c0c4cbae333310.tar.gz nimterop-be1e85934d39b7d0d8ef481593c0c4cbae333310.zip | |
ast2 forward declaration support
Diffstat (limited to 'tests/include')
| -rw-r--r-- | tests/include/tast2.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 5cabfac..e9339ae 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -14,6 +14,11 @@ typedef int *A6; typedef A0 **A7; typedef void *A8; +// Forward declaration +struct A0 { + int f1; +}; + typedef char *A9p[3]; //, A9[4]; typedef char *A10[3][6]; typedef char *(*A11)[3]; @@ -67,6 +72,11 @@ typedef int *A6; typedef A0 **A7; typedef void *A8; +// Forward declaration +struct A0 { + int f1; +}; + typedef char *A9p[3]; //, A9[4]; typedef char *A10[3][6]; typedef char *(*A11)[3]; |
