summary refs log tree commit diff stats
path: root/tests/tinout.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tinout.nim')
-rwxr-xr-xtests/tinout.nim9
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()