mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-06 04:57:49 +00:00
11 lines
134 B
Nim
11 lines
134 B
Nim
|
|
# bug #1944
|
|
import macros
|
|
|
|
template t(e: untyped): untyped =
|
|
macro m(eNode: untyped): untyped =
|
|
echo eNode.treeRepr
|
|
m e
|
|
|
|
t 5
|