mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 06:18:51 +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
|