-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
overflowing_literals
error is confusing because of type inference
#79744
Comments
|
While that is true (and as I mentioned, I do not expect this to work) the problem is the error reported by the compiler doesn't help the user resolve the problem. In a small example like this it's easy to see where the problem lies but in a larger one the compiler error would send the user in the wrong direction. |
okay, marking as a diagnostics enhancement |
I'm guessing this would be hard to implement since we'd need to somehow track the spot(s) that caused us to infer a particular type. |
Yes, seems very hard to implement. I think it would be reasonable to close this as wontfix, but I don't work on diagnostics, so I'll defer to other people. |
I think the inference/ diagnostics logic in the compiler is already able to track the correct spot and what I've reported is probably an unhandled edge-case, because if I replace Code
Error Output
|
Unfortunately, I don't think that's the case. In the first example, all the compiler knows is that However, in the second example, the compiler knows that
Here it's expecting an |
Now that I've thought about this some more, I think this would be extremely hard to fix for not a ton of gain. The issue is that this error is not even coming out of the type-checker; it comes from |
overflowing_literals
error is confusing because of type inference
Reposting my idea from Zulip: Perhaps we could store something in the pub struct InferenceSource {
pub source_spans: Vec<Span>,
} Over time we could add more fields if we wanted more detailed diagnostics. |
I'm not sure how feasible that is, but seems potentially possible. |
One thing we'd need to figure out is when and how much to show of the inference-source stack. In some situations, it may not be helpful, and in others it may be too much information. |
This had me confused for a bit as well, i.e. I'm first pushing e2 onto the Vector so I thought it would infer it to be I experimented with
From an end-user perspective I couldn't follow much of what you said but if the diagnostic was to point to the line where the element was pushed (or otherwise used in a manner that causes a type mismatch) and not where it has its value set, that would be better. |
I think this suggests an inexpensive way forward for a diagnostic here: suggest that they add a suffix and recompile. For example, it could see the |
That’s a good idea! :) |
…nce-error, r=lcnr Add 'consider using' message to overflowing_literals Fixes rust-lang#79744. Ironically, the `overflowing_literals` handler for binary or hex already had this message! You would think it would be the other way around :) cc `@scottmcm`
…nce-error, r=lcnr Add 'consider using' message to overflowing_literals Fixes rust-lang#79744. Ironically, the `overflowing_literals` handler for binary or hex already had this message! You would think it would be the other way around :) cc ``@scottmcm``
While experimenting with the Rust By Example playground on the Inference section at https://doc.rust-lang.org/stable/rust-by-example/types/inference.html I came across what I believe is an error in the error produced by the compiler.
I do not expect this example to work but the error
literal out of range for 'i8'
is reported against line 4let e2 = 230;
which is a perfectly valid statement. The problem is lower down where two different types are pushed onto the same Vector but possibly due to the way the inference engine works this is being incorrectly reported against line 4. If I comment out the linevec.push(e2);
, the example works fine, apart from awarning: unused variable: 'e2'
.Code
Meta
rustc --version --verbose
: I am unable to determine the exact compiler version in the Rust By Example playground. I have run the same example on my Fedora 32 Workstation machine and with the same result. The rustc version details for this machine are as followsError output
Backtrace
Sorry I don't know exactly how to provide this.The text was updated successfully, but these errors were encountered: