diff options
Diffstat (limited to 'tests/parser')
-rw-r--r-- | tests/parser/tmultiline_comments.nim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/parser/tmultiline_comments.nim b/tests/parser/tmultiline_comments.nim new file mode 100644 index 000000000..16abc7c3f --- /dev/null +++ b/tests/parser/tmultiline_comments.nim @@ -0,0 +1,18 @@ +discard """ + output: '''3''' +""" + +proc main* = + ##[Mutltie akdlsf comment with #[nesting]. + Yay, that is so cool. + ]## + echo "foo bar" + +var foo #[ Test the new inline comments ]#: int = 3 +##[ A +novel documentation comment +#[Nesting works to some extend] +##[ Nested doc comment! ]## +]# +]## +echo $foo |