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

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

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