aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoey Yakimowich-Payne <jyapayne@gmail.com>2020-05-12 16:22:53 -0600
committergenotrance <dev@genotrance.com>2020-05-15 11:20:00 -0500
commit32c98435486cff69f7ecbcfb2be3c8f1739fe177 (patch)
tree62e0b0b528aa7631a970ce57fc4c64a0f3a3f54a /tests
parentfc587fae037c0443cc1a2ca64685ba1d3b9d62d3 (diff)
downloadnimterop-32c98435486cff69f7ecbcfb2be3c8f1739fe177.tar.gz
nimterop-32c98435486cff69f7ecbcfb2be3c8f1739fe177.zip
Fix undefined identifiers resulting in incorrect types
Diffstat (limited to 'tests')
-rw-r--r--tests/include/tast2.h15
-rw-r--r--tests/tast2.nim3
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/include/tast2.h b/tests/include/tast2.h
index bbb3315..f28c003 100644
--- a/tests/include/tast2.h
+++ b/tests/include/tast2.h
@@ -49,6 +49,21 @@ extern "C" {
#define ALLSHL (SHL1 | SHL2 | SHL3)
+// const not supported yet
+const int SOME_CONST = 8;
+
+struct some_struct_s
+{
+ int x;
+};
+
+struct parent_struct_s
+{
+ struct some_struct_s s[SOME_CONST];
+};
+
+typedef struct some_struct_s SOME_ARRAY[SOME_CONST];
+
struct A0;
struct A1 {};
typedef struct A2;
diff --git a/tests/tast2.nim b/tests/tast2.nim
index 4fd16cc..058ad0b 100644
--- a/tests/tast2.nim
+++ b/tests/tast2.nim
@@ -155,6 +155,9 @@ assert typeof(POINTERPOINTERPOINTEREXPR) is (ptr ptr ptr cint)
assert ALLSHL == (SHL1 or SHL2 or SHL3)
+assert not compiles(parent_struct_s().s)
+assert not defined(SOME_ARRAY)
+
assert A0 is object
testFields(A0, "f1!cint")
checkPragmas(A0, pHeaderBy, istype = false)