diff options
Diffstat (limited to 'tests/run')
-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() |