mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-10 15:04:59 +00:00
4 lines
153 B
Nim
4 lines
153 B
Nim
macro testMacro(body: untyped): untyped = discard
|
|
macro testMacro(s: string, body: untyped): untyped = discard
|
|
proc foo() {.testMacro: "foo".} = discard
|