mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
10 lines
226 B
Nim
10 lines
226 B
Nim
discard """
|
|
errormsg: "invalid type: 'macro (body: untyped): untyped{.noSideEffect, gcsafe, locks: 0.}' for const. Did you mean to call the macro with '()'?"
|
|
line: 9
|
|
"""
|
|
|
|
macro m(body: untyped): untyped =
|
|
body
|
|
|
|
const x2 = m
|