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

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

t 5