Skip to content

Commit 232f314

Browse files
Make sure that non-pretty-printing usages are using the correct elaborator
1 parent 910bb4f commit 232f314

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

compiler/rustc_hir_typeck/src/method/suggest.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ use rustc_infer::infer::{
2626
RegionVariableOrigin,
2727
};
2828
use rustc_middle::infer::unify_key::{ConstVariableOrigin, ConstVariableOriginKind};
29-
use rustc_middle::traits::util::supertraits;
3029
use rustc_middle::ty::fast_reject::DeepRejectCtxt;
3130
use rustc_middle::ty::fast_reject::{simplify_type, TreatParams};
3231
use rustc_middle::ty::print::{with_crate_prefix, with_forced_trimmed_paths};
@@ -40,7 +39,7 @@ use rustc_trait_selection::traits::error_reporting::on_unimplemented::OnUnimplem
4039
use rustc_trait_selection::traits::error_reporting::on_unimplemented::TypeErrCtxtExt as _;
4140
use rustc_trait_selection::traits::query::evaluate_obligation::InferCtxtExt as _;
4241
use rustc_trait_selection::traits::{
43-
FulfillmentError, Obligation, ObligationCause, ObligationCauseCode,
42+
supertraits, FulfillmentError, Obligation, ObligationCause, ObligationCauseCode,
4443
};
4544
use std::borrow::Cow;
4645

compiler/rustc_infer/src/traits/util.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use smallvec::smallvec;
22

33
use crate::infer::outlives::components::{push_outlives_components, Component};
44
use crate::traits::{self, Obligation, PredicateObligation};
5-
use rustc_data_structures::fx::{FxHashSet};
5+
use rustc_data_structures::fx::FxHashSet;
66
use rustc_middle::ty::{self, ToPredicate, Ty, TyCtxt};
77
use rustc_span::symbol::Ident;
88
use rustc_span::Span;
@@ -423,7 +423,7 @@ impl<'tcx, O: Elaboratable<'tcx>> Iterator for Elaborator<'tcx, O> {
423423
pub fn supertraits<'tcx>(
424424
tcx: TyCtxt<'tcx>,
425425
trait_ref: ty::PolyTraitRef<'tcx>,
426-
) -> impl Iterator<Item = ty::PolyTraitRef<'tcx>> {
426+
) -> FilterToTraits<Elaborator<'tcx, ty::Predicate<'tcx>>> {
427427
elaborate(tcx, [trait_ref.to_predicate(tcx)]).filter_only_self().filter_to_traits()
428428
}
429429

compiler/rustc_lint/src/deref_into_dyn_supertrait.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ use crate::{
44
};
55

66
use rustc_hir as hir;
7-
use rustc_middle::{traits::util::supertraits, ty};
7+
use rustc_middle::ty;
88
use rustc_session::lint::FutureIncompatibilityReason;
99
use rustc_span::sym;
10+
use rustc_trait_selection::traits::supertraits;
1011

1112
declare_lint! {
1213
/// The `deref_into_dyn_supertrait` lint is output whenever there is a use of the

compiler/rustc_middle/src/traits/util.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ use rustc_data_structures::fx::FxHashSet;
33
use crate::ty::{PolyTraitRef, TyCtxt};
44

55
/// Given a PolyTraitRef, get the PolyTraitRefs of the trait's (transitive) supertraits.
6-
///
7-
/// A simplified version of the same function at `rustc_infer::traits::util::supertraits`.
8-
pub fn supertraits<'tcx>(
6+
/// This only exists in `rustc_middle` because the more powerful elaborator depends on
7+
/// `rustc_infer` for elaborating outlives bounds -- this should only be used for pretty
8+
/// printing.
9+
pub fn supertraits_for_pretty_printing<'tcx>(
910
tcx: TyCtxt<'tcx>,
1011
trait_ref: PolyTraitRef<'tcx>,
1112
) -> impl Iterator<Item = PolyTraitRef<'tcx>> {

compiler/rustc_middle/src/ty/print/pretty.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use crate::mir::interpret::{AllocRange, GlobalAlloc, Pointer, Provenance, Scalar};
22
use crate::query::IntoQueryParam;
33
use crate::query::Providers;
4+
use crate::traits::util::supertraits_for_pretty_printing;
45
use crate::ty::{
56
self, ConstInt, ParamConst, ScalarInt, Term, TermKind, Ty, TyCtxt, TypeFoldable,
67
TypeSuperFoldable, TypeSuperVisitable, TypeVisitable, TypeVisitableExt,
@@ -1166,14 +1167,14 @@ pub trait PrettyPrinter<'tcx>:
11661167
entry.has_fn_once = true;
11671168
return;
11681169
} else if Some(trait_def_id) == self.tcx().lang_items().fn_mut_trait() {
1169-
let super_trait_ref = crate::traits::util::supertraits(self.tcx(), trait_ref)
1170+
let super_trait_ref = supertraits_for_pretty_printing(self.tcx(), trait_ref)
11701171
.find(|super_trait_ref| super_trait_ref.def_id() == fn_once_trait)
11711172
.unwrap();
11721173

11731174
fn_traits.entry(super_trait_ref).or_default().fn_mut_trait_ref = Some(trait_ref);
11741175
return;
11751176
} else if Some(trait_def_id) == self.tcx().lang_items().fn_trait() {
1176-
let super_trait_ref = crate::traits::util::supertraits(self.tcx(), trait_ref)
1177+
let super_trait_ref = supertraits_for_pretty_printing(self.tcx(), trait_ref)
11771178
.find(|super_trait_ref| super_trait_ref.def_id() == fn_once_trait)
11781179
.unwrap();
11791180

0 commit comments

Comments
 (0)