summary refs log tree commit diff stats
path: root/tests/openarray/t8259.nim
blob: 40ff2b2f146bd6a8541d047bb1115ff72d275e99 (plain) (blame)
1
2
3
4
5
6
7
discard """
  line: 6
  errormsg: "invalid type: 'openarray[int]' for result"
"""

proc foo(a: openArray[int]):auto = a
echo foo(toOpenArray([1, 2], 0, 2))