diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index 1a1454068e7..52939e990f9 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs @@ -52,6 +52,7 @@ use hir_ty::{ autoderef, display::{write_bounds_like_dyn_trait_with_prefix, HirDisplayError, HirFormatter}, method_resolution::{self, TyFingerprint}, + primitive::UintTy, to_assoc_type_id, traits::{FnTrait, Solution, SolutionVariables}, AliasTy, BoundVar, CallableDefId, CallableSig, Canonical, DebruijnIndex, GenericPredicate, @@ -1632,10 +1633,7 @@ impl Type { } pub fn is_usize(&self) -> bool { - matches!( - self.ty.value.interned(&Interner), - TyKind::Scalar(Scalar::Uint(hir_ty::primitive::UintTy::Usize)) - ) + matches!(self.ty.value.interned(&Interner), TyKind::Scalar(Scalar::Uint(UintTy::Usize))) } pub fn remove_ref(&self) -> Option {