1
Fork 0

Don't record spans for predicates in coherence

This commit is contained in:
Michael Goulet 2023-08-24 19:22:24 +00:00
parent ac02e40380
commit 4647aea7aa
7 changed files with 19 additions and 37 deletions

View file

@ -238,7 +238,7 @@ pub struct ImplHeader<'tcx> {
pub impl_def_id: DefId,
pub self_ty: Ty<'tcx>,
pub trait_ref: Option<TraitRef<'tcx>>,
pub predicates: Vec<(Predicate<'tcx>, Span)>,
pub predicates: Vec<Predicate<'tcx>>,
}
#[derive(Copy, Clone, PartialEq, Eq, Debug, TypeFoldable, TypeVisitable)]