summary refs log tree commit diff stats
path: root/tests/errmsgs/tnnodeindex.nim
blob: 5e37e7977054b6bde827242afa095cc07d28d832 (plain) (blame)
1
2
3
4
5
6
7
8
discard """
  errormsg: "index 5 not in 0 .. 2"
  line: 7
"""
import macros
macro t(x: untyped): untyped =
  result = x[5]
t([1, 2, 3])