summary refs log tree commit diff stats
path: root/tests/compile/tprocvars.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/tprocvars.nim')
-rw-r--r--tests/compile/tprocvars.nim6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/compile/tprocvars.nim b/tests/compile/tprocvars.nim
deleted file mode 100644
index dc7592526..000000000
--- a/tests/compile/tprocvars.nim
+++ /dev/null
@@ -1,6 +0,0 @@
-proc doSomething(v: Int, x: proc(v:Int):Int): Int = return x(v)
-proc doSomething(v: Int, x: proc(v:Int)) = x(v)
-
-
-echo doSomething(10, proc(v: Int): Int = return v div 2)
-