-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Do not attempt to write ty::Err
on binding that isn't from current HIR Owner
#123202
Conversation
r? @fee1-dead rustbot has assigned @fee1-dead. Use |
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (7e0ed43): 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)This benchmark run did not return any relevant results for this metric. 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: 669.053s -> 669.392s (0.05%) |
Stop calling visitors `V` Renames some visitors which currently have the unhelpful name of `V`. It's not self-documenting, and there is no situation where saving a few bytes in source code helps anyone. Stacked on top of rust-lang#123202 due to conflict.
Rollup merge of rust-lang#123211 - compiler-errors:V, r=estebank Stop calling visitors `V` Renames some visitors which currently have the unhelpful name of `V`. It's not self-documenting, and there is no situation where saving a few bytes in source code helps anyone. Stacked on top of rust-lang#123202 due to conflict.
Fix #123009. Follow up to #122119.