diff options
author | Araq <rumpf_a@web.de> | 2018-10-24 00:53:41 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-10-24 00:53:41 +0200 |
commit | e3a0415650b3b761a2a18907d2f0796c209ba4fa (patch) | |
tree | 79ce0dd6d0a24f2933d6bb0fd50a3a76e974b11c /nimpretty/tests/simple2.nim | |
parent | 72370c8dfab35b46c8aa5f1647d8c7a61b85a68e (diff) | |
download | Nim-e3a0415650b3b761a2a18907d2f0796c209ba4fa.tar.gz |
nimpretty: fixes #9398
Diffstat (limited to 'nimpretty/tests/simple2.nim')
-rw-r--r-- | nimpretty/tests/simple2.nim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nimpretty/tests/simple2.nim b/nimpretty/tests/simple2.nim index d07885fc5..6cf9573df 100644 --- a/nimpretty/tests/simple2.nim +++ b/nimpretty/tests/simple2.nim @@ -7,3 +7,9 @@ proc fun*()= echo "ok" ## doc comment # regular comment + +proc funB() = + echo "ok1" + # echo "ok2" + +fun() |