summary refs log tree commit diff stats
path: root/tests/template/t21231.nim
blob: 51e96cdd651e3ce812384cebd45fd075994b837c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  errormsg: "undeclared identifier: 'x'"
"""

var x: int
# bug #21231
template f(y: untyped) = echo y.x
for i in 1 .. 10:
  x = i
  f(system)