summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-06-03 08:05:32 +0200
committerAraq <rumpf_a@web.de>2013-06-03 08:05:32 +0200
commitb3ac785f95950791ae342d8973864684c78cc09b (patch)
treec68ca631ee4ae850c90d51064ee4825fa2930772 /tests
parent865a43050d17bef796da956f080913076cf8e866 (diff)
downloadNim-b3ac785f95950791ae342d8973864684c78cc09b.tar.gz
fixes semicolon parsing issue
Diffstat (limited to 'tests')
-rw-r--r--tests/run/tstmtexprs.nim5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/run/tstmtexprs.nim b/tests/run/tstmtexprs.nim
index a69acd98b..497a2f6d0 100644
--- a/tests/run/tstmtexprs.nim
+++ b/tests/run/tstmtexprs.nim
@@ -64,3 +64,8 @@ proc p2(a: int): int =
   q()
 
 echo p(), " ", p2(2)
+
+proc semiProblem() =
+  if false: echo "aye"; echo "indeed"
+
+semiProblem()