diff options
Diffstat (limited to 'tests/accept/run/topenarrayrepr.nim')
-rwxr-xr-x | tests/accept/run/topenarrayrepr.nim | 11 |
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] - |