Rollup merge of #107803 - eggyal:do_not_bring_trait_alias_supertraits_into_scope, r=compiler-errors
Do not bring trait alias supertraits into scope Fixes #107747 cc #41517
This commit is contained in:
commit
16a4138387
@ -951,14 +951,26 @@ fn assemble_extension_candidates_for_trait(
|
||||
let trait_ref = self.tcx.mk_trait_ref(trait_def_id, trait_substs);
|
||||
|
||||
if self.tcx.is_trait_alias(trait_def_id) {
|
||||
// For trait aliases, assume all supertraits are relevant.
|
||||
let bounds = iter::once(ty::Binder::dummy(trait_ref));
|
||||
self.elaborate_bounds(bounds, |this, new_trait_ref, item| {
|
||||
let new_trait_ref = this.erase_late_bound_regions(new_trait_ref);
|
||||
// For trait aliases, recursively assume all explicitly named traits are relevant
|
||||
for expansion in traits::expand_trait_aliases(
|
||||
self.tcx,
|
||||
iter::once((ty::Binder::dummy(trait_ref), self.span)),
|
||||
) {
|
||||
let bound_trait_ref = expansion.trait_ref();
|
||||
for item in self.impl_or_trait_item(bound_trait_ref.def_id()) {
|
||||
if !self.has_applicable_self(&item) {
|
||||
self.record_static_candidate(CandidateSource::Trait(
|
||||
bound_trait_ref.def_id(),
|
||||
));
|
||||
} else {
|
||||
let new_trait_ref = self.erase_late_bound_regions(bound_trait_ref);
|
||||
|
||||
let (xform_self_ty, xform_ret_ty) =
|
||||
this.xform_self_ty(&item, new_trait_ref.self_ty(), new_trait_ref.substs);
|
||||
this.push_candidate(
|
||||
let (xform_self_ty, xform_ret_ty) = self.xform_self_ty(
|
||||
&item,
|
||||
new_trait_ref.self_ty(),
|
||||
new_trait_ref.substs,
|
||||
);
|
||||
self.push_candidate(
|
||||
Candidate {
|
||||
xform_self_ty,
|
||||
xform_ret_ty,
|
||||
@ -968,7 +980,9 @@ fn assemble_extension_candidates_for_trait(
|
||||
},
|
||||
false,
|
||||
);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
debug_assert!(self.tcx.is_trait(trait_def_id));
|
||||
if self.tcx.trait_is_auto(trait_def_id) {
|
||||
|
@ -0,0 +1,21 @@
|
||||
// Regression test for #107747: methods from trait alias supertraits were brought into scope
|
||||
//
|
||||
// check-pass
|
||||
|
||||
#![feature(trait_alias)]
|
||||
|
||||
use std::fmt;
|
||||
|
||||
trait Foo: fmt::Debug {}
|
||||
trait Bar = Foo;
|
||||
|
||||
#[derive(Debug)]
|
||||
struct Qux(bool);
|
||||
|
||||
impl fmt::Display for Qux {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
self.0.fmt(f)
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {}
|
Loading…
Reference in New Issue
Block a user