4d9a5dc8f ^
000b8afd2 ^
1 2 3 4 5 6
7
8 9 10 11 12 13 14
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