-
Notifications
You must be signed in to change notification settings - Fork 25
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
Exported converters cause havoc. #38
Comments
bef9a61 should help. Please check and let me know. |
That will not resolve the issue as converters bubble up. For example the following still errors. # Module c
converter toInt*(x: uint8): int = int(x)
proc `$`*(x: uint8): string {.raises: [].} =
result.addInt(int(x))
# Module b
import c
# Module a
import b
echo 10u8 |
looks to me like a Nim bug that needs a workaround. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just spent 10-20 minutes to hunt down why I could not echo a
byte
, which is cause ofsdl2_nim/sdl2_nim/private/stdinc.nim
Line 87 in 43bbdb9
The text was updated successfully, but these errors were encountered: