summary refs log tree commit diff stats
path: root/tests/accept/run/topenarrayrepr.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/topenarrayrepr.nim')
-rwxr-xr-xtests/accept/run/topenarrayrepr.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/accept/run/topenarrayrepr.nim b/tests/accept/run/topenarrayrepr.nim
deleted file mode 100755
index 7e976540f..000000000
--- a/tests/accept/run/topenarrayrepr.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-type
-  TProc = proc (n: int, m: openarray[int64])
-
-proc Foo(x: int, P: TProc) =
-  P(x, [ 1'i64 ])
-
-proc Bar(n: int, m: openarray[int64]) =
-  echo($n & " - " & repr(m))
-
-Foo(5, Bar) #OUT 5 - [1]
-