mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
9 lines
136 B
Nim
9 lines
136 B
Nim
discard """
|
|
errormsg: "index 5 not in 0 .. 2"
|
|
line: 7
|
|
"""
|
|
import macros
|
|
macro t(x: untyped): untyped =
|
|
result = x[5]
|
|
t([1, 2, 3])
|