summary refs log tree commit diff stats
path: root/tests/tinout.nim
blob: b4fe2fb10be7923d955fbec09c91fbe6e293f57e (plain) (blame)
1
2
3
4
5
6
7
8
9
# Test in out checking for parameters

proc abc(x: var int) =
    x = 0

proc b() =
    abc(3) #ERROR

b()