summary refs log blame commit diff stats
path: root/tests/macros/tmacroaspragma.nim
blob: 0e5c352b370fba9b876309f691f9f2b7a2e60891 (plain) (tree)
1
2
3
4
5
6
7
8







                                  
import macros

macro foo(x: stmt): stmt =
  echo treerepr(callsite())
  result = newNimNode(nnkStmtList)

proc zoo() {.foo.} = echo "hi"