summary refs log tree commit diff stats
path: root/tests/parser
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-01-17 21:42:13 +0100
committerAndreas Rumpf <rumpf_a@web.de>2016-01-17 21:42:13 +0100
commit71cf1f650e2812e43ed5a6edfb36666cfc145fdd (patch)
tree91305d15cfac1b31a0b0817666408b17f7222bfa /tests/parser
parent2c2ab6884c1055dedc9dbafbeeb492fecf251ea8 (diff)
downloadNim-71cf1f650e2812e43ed5a6edfb36666cfc145fdd.tar.gz
fixes multiline comments
Diffstat (limited to 'tests/parser')
-rw-r--r--tests/parser/tmultiline_comments.nim16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/parser/tmultiline_comments.nim b/tests/parser/tmultiline_comments.nim
index 16abc7c3f..72832479d 100644
--- a/tests/parser/tmultiline_comments.nim
+++ b/tests/parser/tmultiline_comments.nim
@@ -7,6 +7,8 @@ proc main* =
   Yay, that is so cool.
   ]##
   echo "foo bar"
+  for s in ["one", "two", #["three",]# "four"]:
+    echo s
 
 var foo #[ Test the new inline comments ]#: int = 3
 ##[ A
@@ -16,3 +18,17 @@ novel documentation comment
 ]#
 ]##
 echo $foo
+
+  #[Comment here.
+  Multiple lines
+  are not a problem.]#
+
+  #[  #[ Multiline comment in already
+     commented out code. ]#
+  proc p[T](x: T) = discard
+  ]#
+
+proc bar =
+  ##[Long documentation comment
+  here.
+  ]##