mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
10 lines
116 B
Nim
10 lines
116 B
Nim
# Test in out checking for parameters
|
|
|
|
proc abc(x: var int) =
|
|
x = 0
|
|
|
|
proc b() =
|
|
abc(3) #ERROR
|
|
|
|
b()
|