aboutsummaryrefslogtreecommitdiff
path: root/tests/include
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2020-03-16 17:50:43 -0500
committerGanesh Viswanathan <dev@genotrance.com>2020-03-16 17:50:43 -0500
commit3f500898aa5b45b423348846d794463585ef34ee (patch)
treeb386566f73f7f97bc3f2f87123f245126a757ade /tests/include
parent077981c3a5e577029cf28bffc67648e73d4aafcc (diff)
downloadnimterop-3f500898aa5b45b423348846d794463585ef34ee.tar.gz
nimterop-3f500898aa5b45b423348846d794463585ef34ee.zip
Add ast2 array expression support, cleanup debug output
Diffstat (limited to 'tests/include')
-rw-r--r--tests/include/tast2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h
index 1a2789b..ced3a44 100644
--- a/tests/include/tast2.h
+++ b/tests/include/tast2.h
@@ -32,7 +32,7 @@ typedef struct { char *a1; int *a2[1]; } A19, *A19p;
typedef struct A20 { char a1; } A20, A21, *A21p;
//Expression
-//typedef struct A21 { int **f1; int abc[123+132]; } A21;
+typedef struct A22 { int **f1; int *f2[123+132]; } A22;
//Unions
//union UNION1 {int f1; };