mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
15 lines
243 B
Nim
15 lines
243 B
Nim
discard """
|
|
file: "trecmacro.nim"
|
|
line: 8
|
|
errormsg: "recursive dependency: 'dump'"
|
|
"""
|
|
|
|
macro dump(n: untyped): untyped =
|
|
dump(n)
|
|
if kind(n) == nnkNone:
|
|
nil
|
|
else:
|
|
hint($kind(n))
|
|
for i in countUp(0, len(n)-1):
|
|
nil
|