diff options
author | Araq <rumpf_a@web.de> | 2013-06-03 08:05:32 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-06-03 08:05:32 +0200 |
commit | b3ac785f95950791ae342d8973864684c78cc09b (patch) | |
tree | c68ca631ee4ae850c90d51064ee4825fa2930772 /tests | |
parent | 865a43050d17bef796da956f080913076cf8e866 (diff) | |
download | Nim-b3ac785f95950791ae342d8973864684c78cc09b.tar.gz |
fixes semicolon parsing issue
Diffstat (limited to 'tests')
-rw-r--r-- | tests/run/tstmtexprs.nim | 5 |
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() |