aboutsummaryrefslogtreecommitdiff
path: root/tests/include
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2020-03-21 12:51:12 -0500
committerGanesh Viswanathan <dev@genotrance.com>2020-03-21 20:07:45 -0500
commitbe1e85934d39b7d0d8ef481593c0c4cbae333310 (patch)
treee526062b394bccb1956412bd905c515f763acecf /tests/include
parent4cfeea67a1152534e620db9832785f3ee5f9b259 (diff)
downloadnimterop-be1e85934d39b7d0d8ef481593c0c4cbae333310.tar.gz
nimterop-be1e85934d39b7d0d8ef481593c0c4cbae333310.zip
ast2 forward declaration support
Diffstat (limited to 'tests/include')
-rw-r--r--tests/include/tast2.h10
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];