2cdfe35e7 ^
405b86068
07d5a8085 ^
1 2 3 4 5
6 7
8
9 10 11 12 13 14
15 16
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()