require errormsg to be specified before file.

This commit is contained in:
Arne Döring
2018-11-29 16:07:51 +01:00
committed by Araq
parent ca394ebd95
commit 1105d03644
264 changed files with 305 additions and 623 deletions

View File

@@ -1,5 +1,4 @@
discard """
file: "topenarrayrepr.nim"
output: "5 - [1]"
"""
type
@@ -12,6 +11,3 @@ proc Bar(n: int, m: openarray[int64]) =
echo($n & " - " & repr(m))
Foo(5, Bar) #OUT 5 - [1]