Temporarily re-export assert_matches! to reduce stabilization churn

This commit is contained in:
Zalathar 2026-01-19 14:46:38 +11:00
parent 3d087e6044
commit 7ec34defe9
58 changed files with 64 additions and 79 deletions

View file

@ -1,6 +1,5 @@
use std::assert_matches::assert_matches;
use rustc_abi::VariantIdx;
use rustc_data_structures::assert_matches;
use rustc_index::Idx;
use rustc_index::bit_set::{DenseBitSet, MixedBitSet};
use rustc_middle::bug;

View file

@ -1,8 +1,8 @@
use std::assert_matches::debug_assert_matches;
use std::fmt::{Debug, Formatter};
use std::ops::Range;
use rustc_abi::{FieldIdx, VariantIdx};
use rustc_data_structures::debug_assert_matches;
use rustc_data_structures::fx::{FxHashMap, FxIndexSet, StdEntry};
use rustc_data_structures::stack::ensure_sufficient_stack;
use rustc_index::IndexVec;