mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
8 lines
156 B
Nim
8 lines
156 B
Nim
discard """
|
|
errormsg: "invalid type: 'openarray[int]' for result"
|
|
line: 6
|
|
"""
|
|
|
|
proc foo(a: openArray[int]):auto = a
|
|
echo foo(toOpenArray([1, 2], 0, 2))
|