-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ambiguous call from forward declared procedure created in a macro #12175
Comments
The forward declaration uses a different gensym'ed symbol so the compiler thinks you introduced two separate procs. |
Is it still relevant? I see error while checking nimlsp.nim with nimlsp: it compiles correctly of course. so can it be bug in |
Yeah that sounds like a nimsuggest bug, which version of Nim sources did you use when building nimlsp? |
Nim Compiler Version 1.6.5 [Windows: amd64] |
same with last devel nim sources. |
After a bug in
nimsuggest
was fixed that should keepnimlsp
from crashing I tried to buildnimlsp
on the latest devel. This causes the error:The two procedures point to the macro code that generates them and one is only a forward declaration while the other is the procedure with the body.
The text was updated successfully, but these errors were encountered: