mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
12 lines
139 B
Nim
12 lines
139 B
Nim
|
|
# bug #1337
|
|
|
|
template someIt(a, pred: expr): expr =
|
|
var it {.inject.} = 0
|
|
pred
|
|
|
|
proc aProc(n: auto) =
|
|
n.someIt(echo(it))
|
|
|
|
aProc(89)
|