summaryrefslogtreecommitdiff
path: root/tnslc/test.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2023-02-17 03:56:11 -0500
committerKyle Gunger <kgunger12@gmail.com>2023-02-17 03:56:11 -0500
commit0505b7ee7aff33be604c24dd20b9c7c72067512a (patch)
tree63b2bca12c546c0b07eeb3ca5e826514fef86fba /tnslc/test.tnsl
parentd84ce6ccd476791d13350be21f0285d694dbf9fe (diff)
Fix type finding bug, test private modules
Diffstat (limited to 'tnslc/test.tnsl')
-rw-r--r--tnslc/test.tnsl10
1 files changed, 5 insertions, 5 deletions
diff --git a/tnslc/test.tnsl b/tnslc/test.tnsl
index ae039a1..e0b6c7f 100644
--- a/tnslc/test.tnsl
+++ b/tnslc/test.tnsl
@@ -23,11 +23,6 @@ enum ENUM_TEST [{}uint8] {
B = {1, 2}
}
-enum EN_ARR [PTR_TEST] {
- A = {3, 2},
- B = {3, 4}
-}
-
uint WAMM = 31, WAM2 = 34
/; module Alpha
@@ -38,6 +33,11 @@ uint WAMM = 31, WAM2 = 34
struct B {
~A dat
}
+
+ enum EN_ARR [PTR_TEST] {
+ A = {3, 2},
+ B = {3, 4}
+ }
;/
/; main [int]