summary refs log tree commit diff stats
path: root/tests/macros/tmacro_in_template.nim
blob: 9668495df2efd8bf9251575187199e1dbd40c3ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# bug #1944
import macros

template t(e: untyped): untyped =
  macro m(eNode: untyped): untyped =
    echo eNode.treeRepr
  m e

t 5