mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
17 lines
229 B
Nim
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()
|
|
|
|
|