-
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
refactor: merge error code E0465
into E0464
#106282
Conversation
cc @davidtwco, @compiler-errors, @JohnTitor, @estebank, @TaKO8Ki Some changes occurred in diagnostic error codes |
Since you made changes in the compiler, I'll let someone from the compiler team approve this PR. |
refactor: merge error code `E0465` into `E0464` `E0465` is an undocumented and untested error code that is functionally identical to `E0464`. This PR merges `E0465` into `E0464`, thus documenting and testing another error code (rust-lang#61137). r? `@GuillaumeGomez` (not sure if you want to review this but it's relevant to my other PRs that you have reviewed)
@bors r- Failed in rollup: #106306 (comment) |
3bb8903
to
24b39ec
Compare
Should all be fixed now, was just a error with the tests. |
@bors r=estebank rollup=iffy |
☀️ Test successful - checks-actions |
Finished benchmarking commit (574b64a): comparison URL. Overall result: ❌ regressions - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
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. |
E0465
is an undocumented and untested error code that is functionally identical toE0464
. This PR mergesE0465
intoE0464
, thus documenting and testing another error code (#61137).r? @GuillaumeGomez (not sure if you want to review this but it's relevant to my other PRs that you have reviewed)