summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/012/syntax.tl12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/012/syntax.tl b/tests/012/syntax.tl
index 87b01d67..36894610 100644
--- a/tests/012/syntax.tl
+++ b/tests/012/syntax.tl
@@ -24,3 +24,15 @@
#; .foo
#;a.b
42 42)
+
+(mtest
+ '(#;abc) nil
+ '(#; abc 1) (1)
+ '(0 #; abc 1) (0 1)
+ '(0 #; abc) (0))
+
+(mtest
+ '(#; .abc) nil
+ '(#; .abc 1) (1)
+ '(0 #; .abc 1) (0 1)
+ '(0 #; .abc) (0))