-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Don't use can_eq
in derive(..)
suggestion for missing method
#111516
Conversation
r? @davidtwco (rustbot has picked a reviewer for you, use r? to override) |
r? compiler |
@bors r+ rollup |
☀️ Test successful - checks-actions |
Finished benchmarking commit (8177591): 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.
CyclesResultsThis 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.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 647.604s -> 647.289s (-0.05%) |
PR #110877 has landed on stable a couple weeks ago, so the diagnostics ICE #111500 and similar happen there now, while beta and nightly are fine thanks to this PR. So if there's ever a 1.71 point release, it could be interesting to backport this PR to stable :
These couple duplicate issues likely wouldn't warrant such a point release by themselves, and the ICE should be rare enough in practice, but we'll see if more people encounter this in the future. Nominating for discussion for stable backport. @rustbot label +stable-nominated |
We are planning 1.71.1 for August 3rd: |
Prepare Rust 1.71.1 This PR prepares the Rust 1.71.1 release, which contains: * rust-lang#113802 * rust-lang#113579 * rust-lang#111516 * rust-lang#112517 * rust-lang@67b5990 (from rust-lang#113678) r? `@ghost` cc `@rust-lang/release`
Unsatisfied predicates returned from method probe may reference inference vars from that probe, so drop this extra check I added in #110877 for more accurate derive suggestions...
Fixes #111500