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

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