-
Notifications
You must be signed in to change notification settings - Fork 13.7k
remove P
#145146
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
remove P
#145146
Conversation
Some changes occurred in src/tools/rustfmt cc @rust-lang/rustfmt Some changes occurred in src/tools/clippy cc @rust-lang/clippy Some changes occurred in compiler/rustc_ast/src/expand/autodiff_attrs.rs cc @ZuseZ4 rust-analyzer is developed in its own repository. If possible, consider making this change to rust-lang/rust-analyzer instead. cc @rust-lang/rust-analyzer Some changes occurred in compiler/rustc_builtin_macros/src/autodiff.rs cc @ZuseZ4 |
This comment has been minimized.
This comment has been minimized.
366ce16
to
7ffc537
Compare
This comment has been minimized.
This comment has been minimized.
use rustc_ast::{self as ast, DUMMY_NODE_ID, Mutability, Pat, PatKind}; | ||
use rustc_ast_pretty::pprust; | ||
use rustc_errors::Applicability; | ||
use rustc_lint::{EarlyContext, EarlyLintPass}; | ||
use rustc_session::impl_lint_pass; | ||
use rustc_span::DUMMY_SP; | ||
use std::boxed::Box; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to shadow use rustc_ast::PatKind::*;
above which contains a variant named Box
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, maybe add a comment?
7ffc537
to
348eced
Compare
Did you grep for @bors p=1 because conflict-prone |
348eced
to
3ba7950
Compare
Yes I did, if I searched for it correctly, there's only one mention of it left and its the release notes of Rust 1.15.0. |
This comment has been minimized.
This comment has been minimized.
3ba7950
to
ad1113f
Compare
@bors r=nnethercote |
…y, r=nnethercote remove `P` Previous work: rust-lang#141603 MCP: rust-lang/compiler-team#878 cc ``@nnethercote``
Rollup of 8 pull requests Successful merges: - #144739 (Use new public libtest `ERROR_EXIT_CODE` constant in rustdoc) - #145089 (Improve error output when a command fails in bootstrap) - #145112 ([win][arm64ec] Partial fix for raw-dylib-link-ordinal on Arm64EC) - #145135 (Stabilize `duration_constructors_lite` feature) - #145146 (remove `P`) - #145152 (Use `to_ascii_lowercase` to avoid heap alloc in `detect_confuse_type`) - #145156 (Override custom Cargo `build-dir` in bootstrap) - #145160 (Change days-threshold to 28 in [behind-upstream]) Failed merges: - #145145 (some `derive_more` refactors) r? `@ghost` `@rustbot` modify labels: rollup
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing ca77504 (parent) -> 41ede7b (this PR) Test differencesShow 60 test diffs60 doctest diffs were found. These are ignored, as they are noisy. Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard 41ede7bd9bfbc9dc1e46c5c7de3b26524e5c61f0 --output-dir test-dashboard And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
Finished benchmarking commit (41ede7b): comparison URL. Overall result: ❌✅ regressions and improvements - no action needed@rustbot label: -perf-regression Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)Results (secondary 3.8%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (secondary -1.2%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 463.988s -> 463.257s (-0.16%) |
Previous work: #141603
MCP: rust-lang/compiler-team#878
cc @nnethercote