diff options
Diffstat (limited to 'tests/tinout.nim')
-rwxr-xr-x | tests/tinout.nim | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/tinout.nim b/tests/tinout.nim deleted file mode 100755 index b4fe2fb10..000000000 --- a/tests/tinout.nim +++ /dev/null @@ -1,9 +0,0 @@ -# Test in out checking for parameters - -proc abc(x: var int) = - x = 0 - -proc b() = - abc(3) #ERROR - -b() |