Show more information when multiple impls apply - #114811
Conversation
|
r? @wesleywiser (rustbot has picked a reviewer for you, use r? to override) |
commented
Aug 14, 2023
|
Some changes occurred in engine.rs, potentially modifying the public API of |
2f365e9 to
355e4e6
Compare
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
2d912cd to
2202509
Compare
commented
Aug 14, 2023
|
Some changes occurred in need_type_info.rs cc @lcnr |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Can you find a better representative for E0282? This is trivially ambiguous, but I think this error should have a more descriptive example.
Also, the description below doesn't match this example.
15ff102 to
e9b0719
Compare
commented
Sep 22, 2023
|
☔ The latest upstream changes (presumably #115897) made this pull request unmergeable. Please resolve the merge conflicts. |
commented
Sep 28, 2023
|
Needs rebase |
e9b0719 to
97124d5
Compare
This comment has been minimized.
This comment has been minimized.
commented
Sep 28, 2023
|
Split the file instead. @bors r=wesleywiser |
commented
Sep 28, 2023
commented
Sep 28, 2023
5529a34 to
4483ac2
Compare
commented
Oct 6, 2023
|
This better work or I'm gonna pull what remains of my hair out. @bors r=wesleywiser |
commented
Oct 6, 2023
commented
Oct 6, 2023
commented
Oct 6, 2023
|
☀️ Test successful - checks-actions |
commented
Oct 6, 2023
|
Thank you @estebank! |
commented
Oct 7, 2023
|
Finished benchmarking commit (94bc9c7): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 623.951s -> 623.472s (-0.08%) |
impls without type params, show only those (to avoid showing overly genericimpls).Lower the importance of
T: Sized,T: WellFormedand coercion errors, to prioritize more relevant errors. The pre-existing deduplication logic deals with hiding redundant errors better that way, and we show errors with more metadata that is useful to the user.Show
<SelfTy as Trait>::assoc_fnsuggestion in more cases.Fix #88284.