You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When my macro is used in a block, the identifier for my object is suffixed with some numbers (e.g. _4855001) but I'm not expecting that. Compare Bob with Another_4855001 below:
$ nim c --hints:off -r /tmp/samp.nim
type
Bob = object
type
Another_4855001 = object
Expected Output
$ nim c --hints:off -r /tmp/samp.nim
type
Bob = object
type
Another = object
Additional Information
$ nim --version
Nim Compiler Version 1.4.0 [MacOSX: amd64]
Compiled at 2020-10-16
Copyright (c) 2006-2020 by Andreas Rumpf
git hash: 018ae963ba83934a68d815c3c1c44c06e8ec6178
active boot switches: -d:release
The text was updated successfully, but these errors were encountered:
When my macro is used in a block, the identifier for my object is suffixed with some numbers (e.g.
_4855001
) but I'm not expecting that. CompareBob
withAnother_4855001
below:Example
Current Output
Expected Output
Additional Information
The text was updated successfully, but these errors were encountered: