mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 14:23:45 +00:00
10 lines
216 B
Nim
10 lines
216 B
Nim
discard """
|
|
errormsg: "invalid type: 'macro (body: untyped): untyped{.noSideEffect, gcsafe.}' for const. Did you mean to call the macro with '()'?"
|
|
line: 9
|
|
"""
|
|
|
|
macro m(body: untyped): untyped =
|
|
body
|
|
|
|
const x2 = m
|