mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
205 B
Nim
15 lines
205 B
Nim
discard """
|
|
errormsg: "type mismatch: got <int literal(3)>"
|
|
file: "tinout.nim"
|
|
line: 12
|
|
"""
|
|
# Test in out checking for parameters
|
|
|
|
proc abc(x: var int) =
|
|
x = 0
|
|
|
|
proc b() =
|
|
abc(3) #ERROR
|
|
|
|
b()
|