Skip to content

Commit 98eb29c

Browse files
Fix trait alias inherent impl resolution
Fixes #60021 and #72415.
1 parent 963bf52 commit 98eb29c

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

src/librustc_typeck/check/method/probe.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -795,6 +795,7 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
795795

796796
fn assemble_inherent_candidates_from_param(&mut self, param_ty: ty::ParamTy) {
797797
// FIXME: do we want to commit to this behavior for param bounds?
798+
debug!("assemble_inherent_candidates_from_param(param_ty={:?})", param_ty);
798799

799800
let bounds = self.param_env.caller_bounds.iter().filter_map(|predicate| match *predicate {
800801
ty::Predicate::Trait(ref trait_predicate, _) => {
@@ -949,7 +950,7 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
949950
import_ids: import_ids.clone(),
950951
kind: TraitCandidate(new_trait_ref),
951952
},
952-
true,
953+
false,
953954
);
954955
});
955956
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// check-pass
2+
3+
#![feature(trait_alias)]
4+
5+
trait SomeTrait {
6+
fn map(&self) {}
7+
}
8+
9+
impl<T> SomeTrait for Option<T> {}
10+
11+
trait SomeAlias = SomeTrait;
12+
13+
fn main() {
14+
let x = Some(123);
15+
// This should resolve to the trait impl for Option
16+
Option::map(x, |z| z);
17+
// This should resolve to the trait impl for SomeTrait
18+
SomeTrait::map(&x);
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// check-pass
2+
3+
#![feature(trait_alias)]
4+
5+
trait Bounded { const MAX: Self; }
6+
7+
impl Bounded for u32 {
8+
// This should correctly resolve to the associated const in the inherent impl of u32.
9+
const MAX: Self = u32::MAX;
10+
}
11+
12+
trait Num = Bounded + Copy;
13+
14+
fn main() {}

0 commit comments

Comments
 (0)