summary refs log tree commit diff stats
path: root/tests/array/troof2.nim
blob: d4c1a4982ab8090bb9338b7c5b15c9d322ba57ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  errormsg: "invalid context for '^' as 'foo()' has side effects"
  line: "9"
"""

proc foo(): seq[int] =
  echo "ha"

let f = foo()[^1]