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