Files
Nim/tests/cpp/tevalorder.nim
Andreas Rumpf 0cc6e12425 fixes #8202 (#10888)
* fixes #8202

* make tests green
2019-03-23 14:49:21 +01:00

19 lines
230 B
Nim

discard """
output: '''0
1
2'''
target: "cpp"
"""
# bug #8202
var current: int = 0
proc gen(): string = current.inc; $(current - 1)
proc allOut(a, b, c: string) =
echo a
echo b
echo c
allOut(gen(), gen(), gen())