summary refs log tree commit diff stats
path: root/tests/template/tit.nim
blob: 76b1d151bb9b9d8f49bb3b9e9a00fb287a8b0efb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# bug #1337

template someIt(a, pred): untyped =
  var it {.inject.} = 0
  pred

proc aProc(n: auto) =
  n.someIt(echo(it))

aProc(89)