aboutsummaryrefslogtreecommitdiff
path: root/tests/include
diff options
context:
space:
mode:
authorGanesh Viswanathan <dev@genotrance.com>2019-01-21 13:01:26 -0600
committerGanesh Viswanathan <dev@genotrance.com>2019-01-21 13:01:26 -0600
commitf9d0514ad453077f13073562f393921fe49c8ec2 (patch)
tree4385b975c225ab0e7ee8172f03757f18c2230624 /tests/include
parenta8028a62ecaf642bb2cff06f7533dcd31e843fb5 (diff)
downloadnimterop-f9d0514ad453077f13073562f393921fe49c8ec2.tar.gz
nimterop-f9d0514ad453077f13073562f393921fe49c8ec2.zip
Fix #53 - array size expressions
Diffstat (limited to 'tests/include')
-rw-r--r--tests/include/test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/include/test.h b/tests/include/test.h
index 06eb18e..a8a5b74 100644
--- a/tests/include/test.h
+++ b/tests/include/test.h
@@ -78,7 +78,7 @@ typedef struct {
int field2[TEST_INT];
enum ENUM field3[TEST_INT];
int *field4[TEST_INT];
- ENUM4 *field5[TEST_INT];
+ ENUM4 *field5[TEST_INT+TEST_INT];
} STRUCT4;
typedef struct struct5 {