Files
Nim/tests/misc/tinout.nim
2015-03-17 00:02:47 +01:00

17 lines
216 B
Nim

discard """
file: "tinout.nim"
line: 12
errormsg: "type mismatch: got (int literal(3))"
"""
# Test in out checking for parameters
proc abc(x: var int) =
x = 0
proc b() =
abc(3) #ERROR
b()