summaryrefslogtreecommitdiff
path: root/tests/test_module.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-03-07 04:53:40 -0500
committerKyle Gunger <kgunger12@gmail.com>2024-03-07 04:53:40 -0500
commit234c99226ca1699832d411d0c326120607620ece (patch)
tree441a02b058960ad3a58edb9d699660a0413e370f /tests/test_module.tnsl
parent567eed5e49a927a31b2692c586da1246519fb1a9 (diff)
fix a couple issues with dot eval
Diffstat (limited to 'tests/test_module.tnsl')
-rw-r--r--tests/test_module.tnsl7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_module.tnsl b/tests/test_module.tnsl
new file mode 100644
index 0000000..394662b
--- /dev/null
+++ b/tests/test_module.tnsl
@@ -0,0 +1,7 @@
+/; module Mod
+ int i = 69
+;/
+
+/; main [int]
+ return Mod.i
+;/