Remove the rustc_data_structures::assert_matches! re-exports#153553
Remove the rustc_data_structures::assert_matches! re-exports#153553rust-bors[bot] merged 1 commit intorust-lang:mainfrom
rustc_data_structures::assert_matches! re-exports#153553Conversation
|
Some changes occurred to the CTFE / Miri interpreter cc @rust-lang/miri Some changes occurred in match lowering cc @Nadrieril Some changes occurred to MIR optimizations cc @rust-lang/wg-mir-opt Some changes occurred to constck cc @fee1-dead Some changes occurred to the CTFE machinery Some changes occurred in match checking cc @Nadrieril Some changes occurred to the core trait solver cc @rust-lang/initiative-trait-system-refactor HIR ty lowering was modified cc @fmease |
|
rustbot has assigned @dingxiangfei2009. Use Why was this reviewer chosen?The reviewer was selected based on:
|
|
r? me @bors r+ rollup |
This comment has been minimized.
This comment has been minimized.
|
This PR was rebased onto a different main commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
|
Resolved a conflict with one of the occurrences having been deleted. @bors r=lqd |
|
⌛ Testing commit 985b41d with merge b793198... Workflow: https://github.com/rust-lang/rust/actions/runs/22820392884 |
|
@bors yield |
|
Auto build was cancelled. Cancelled workflows: The next pull request likely to be tested is #153530. |
Remove the `rustc_data_structures::assert_matches!` re-exports - rust-lang#151359 - rust-lang#153462 --- Now that the bootstrap stage0 compiler has been bumped to 1.95, we can remove these temporary re-exports from `rustc_data_structures`, and once again import the `assert_matches!` macros directly from std.
…uwer Rollup of 4 pull requests Successful merges: - #153464 (Use `&C::Key` less in queries.) - #153553 (Remove the `rustc_data_structures::assert_matches!` re-exports) - #153561 (Replace the `try_mark_green` hook with direct calls to `tcx.dep_graph`) - #153564 (rendering interpreter OOM as OOM instead of ICE)
Rollup merge of #153553 - Zalathar:assert-matches, r=lqd Remove the `rustc_data_structures::assert_matches!` re-exports - #151359 - #153462 --- Now that the bootstrap stage0 compiler has been bumped to 1.95, we can remove these temporary re-exports from `rustc_data_structures`, and once again import the `assert_matches!` macros directly from std.
assert_matches!to reduce stabilization churn #151359Now that the bootstrap stage0 compiler has been bumped to 1.95, we can remove these temporary re-exports from
rustc_data_structures, and once again import theassert_matches!macros directly from std.