summaryrefslogtreecommitdiff
path: root/tnslc/test.tnsl
diff options
context:
space:
mode:
Diffstat (limited to 'tnslc/test.tnsl')
-rw-r--r--tnslc/test.tnsl9
1 files changed, 8 insertions, 1 deletions
diff --git a/tnslc/test.tnsl b/tnslc/test.tnsl
index 7572f1f..28f0917 100644
--- a/tnslc/test.tnsl
+++ b/tnslc/test.tnsl
@@ -1,5 +1,12 @@
# should not be included
+
+/; whatev (~uint8 a) [uint8]
+ return a{0}
+;/
+
/; main [int]
-
+ ~uint8 a = "asdf\0"
+ whatev(a)
+ whatev("asdf\0")
return 0
;/