Files
Nim/tests/tinout.nim
2010-02-14 00:29:35 +01:00

10 lines
116 B
Nim

# Test in out checking for parameters
proc abc(x: var int) =
x = 0
proc b() =
abc(3) #ERROR
b()