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