Skip to content

Commit

Permalink
Clippy: Don't import GenericParamDefKind
Browse files Browse the repository at this point in the history
  • Loading branch information
flip1995 committed Nov 21, 2022
1 parent b4c90ab commit 2422802
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/tools/clippy/clippy_utils/src/ty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ use rustc_infer::infer::TyCtxtInferExt;
use rustc_lint::LateContext;
use rustc_middle::mir::interpret::{ConstValue, Scalar};
use rustc_middle::ty::{
self, AdtDef, AssocKind, Binder, BoundRegion, DefIdTree, FnSig, GenericParamDefKind, IntTy, List, ParamEnv,
Predicate, PredicateKind, ProjectionTy, Region, RegionKind, SubstsRef, Ty, TyCtxt, TypeSuperVisitable,
TypeVisitable, TypeVisitor, UintTy, VariantDef, VariantDiscr,
self, AdtDef, AssocKind, Binder, BoundRegion, DefIdTree, FnSig, IntTy, List, ParamEnv, Predicate, PredicateKind,
ProjectionTy, Region, RegionKind, SubstsRef, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable, TypeVisitor, UintTy,
VariantDef, VariantDiscr,
};
use rustc_middle::ty::{GenericArg, GenericArgKind};
use rustc_span::symbol::Ident;
Expand Down Expand Up @@ -1011,7 +1011,7 @@ pub fn make_projection<'tcx>(
assoc_item.def_id,
substs.len(),
generic_count,
params.map(GenericParamDefKind::descr).collect::<Vec<_>>(),
params.map(ty::GenericParamDefKind::descr).collect::<Vec<_>>(),
substs,
);

Expand All @@ -1022,9 +1022,9 @@ pub fn make_projection<'tcx>(
.find(|(_, (param, arg))| {
!matches!(
(param, arg),
(GenericParamDefKind::Lifetime, GenericArgKind::Lifetime(_))
| (GenericParamDefKind::Type { .. }, GenericArgKind::Type(_))
| (GenericParamDefKind::Const { .. }, GenericArgKind::Const(_))
(ty::GenericParamDefKind::Lifetime, GenericArgKind::Lifetime(_))
| (ty::GenericParamDefKind::Type { .. }, GenericArgKind::Type(_))
| (ty::GenericParamDefKind::Const { .. }, GenericArgKind::Const(_))
)
})
{
Expand All @@ -1036,7 +1036,7 @@ pub fn make_projection<'tcx>(
idx,
param.descr(),
arg,
params.map(GenericParamDefKind::descr).collect::<Vec<_>>(),
params.map(ty::GenericParamDefKind::descr).collect::<Vec<_>>(),
substs,
);
}
Expand Down

0 comments on commit 2422802

Please sign in to comment.