summary refs log tree commit diff stats
path: root/tests/template/tparamscope.nim
blob: 177c682cf00d65f4c8f49193cbbeffe86bb95054 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  errormsg: "undeclared identifier: 'a'"
  line: 10
"""


template secondArg(a, b: typed): untyped =
  b

echo secondArg((var a = 1; 1), a)