-
-
Notifications
You must be signed in to change notification settings - Fork 5.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
convert
truncates integers
#5413
Comments
We could check that values are julia> d = Array(Int8, 1);
julia> d[1] = 2345
2345
julia> d[1]
41 The underlying reason for this behavior is that |
Yes, this is about |
See also #7517. When this is changed, |
…> T (#3759) the sysimg builds, but still need to: - check same-size signed<->unsigned conversion - make tests pass
closed by #8420 |
The culprit lies here. The key is checked for truncation, but not the value.
The text was updated successfully, but these errors were encountered: