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