aboutsummaryrefslogtreecommitdiff
path: root/tests/include
diff options
context:
space:
mode:
authorgenotrance <dev@genotrance.com>2019-01-18 22:39:22 -0600
committerGitHub <noreply@github.com>2019-01-18 22:39:22 -0600
commitdd234ab7eff217d9d14df7d0fe16ff44466f5be9 (patch)
treed72f103b0edae320c7782d0491078339771abee2 /tests/include
parent287980c9edbb1f037b1827b62ca8cc3453b2203a (diff)
downloadnimterop-dd234ab7eff217d9d14df7d0fe16ff44466f5be9.tar.gz
nimterop-dd234ab7eff217d9d14df7d0fe16ff44466f5be9.zip
Recursive node support, enum expressions, or/and/not (#45)
Diffstat (limited to 'tests/include')
-rw-r--r--tests/include/test.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/include/test.h b/tests/include/test.h
index 8a8c579..64bdbb2 100644
--- a/tests/include/test.h
+++ b/tests/include/test.h
@@ -60,6 +60,12 @@ typedef enum ENUM4 {
enum12
} ENUM4;
+enum ENUM5 {
+ enum13 = (1 << 2),
+ enum14 = ((1 << 3) | 1),
+ enum15 = (1 << (1 & 1))
+};
+
typedef void * VOIDPTR;
typedef int * INTPTR;