Files
Nim/tests/misc/tinout.nim
Andreas Rumpf a690e7b267 Merge pull request #1075 from flaviut/inlinedocs
Add some documentations and code examples in system
2014-04-09 22:56:18 +02:00

17 lines
229 B
Nim

discard """
file: "tinout.nim"
line: 12
errormsg: "for a \'var\' type a variable needs to be passed"
"""
# Test in out checking for parameters
proc abc(x: var int) =
x = 0
proc b() =
abc(3) #ERROR
b()