diff options
Diffstat (limited to 'tests/template')
-rw-r--r-- | tests/template/tit.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/template/tit.nim b/tests/template/tit.nim index 9866711de..cf50d2f6f 100644 --- a/tests/template/tit.nim +++ b/tests/template/tit.nim @@ -5,7 +5,7 @@ template someIt(a, pred: expr): expr = var it {.inject.} = 0 pred -proc aProc(n) = +proc aProc(n: auto) = n.someIt(echo(it)) aProc(89) |