Skip to content

Commit d33eb34

Browse files
Unconditionally register alias-relate in projection goal
1 parent 56d25ba commit d33eb34

File tree

4 files changed

+71
-13
lines changed

4 files changed

+71
-13
lines changed

compiler/rustc_trait_selection/src/solve/project_goals.rs

+23-11
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,28 @@ impl<'tcx> EvalCtxt<'_, 'tcx> {
88
&mut self,
99
goal: Goal<'tcx, ProjectionPredicate<'tcx>>,
1010
) -> QueryResult<'tcx> {
11-
match goal.predicate.term.unpack() {
12-
ty::TermKind::Ty(term) => {
13-
let alias = goal.predicate.projection_ty.to_ty(self.tcx());
14-
self.eq(goal.param_env, alias, term)?;
15-
self.evaluate_added_goals_and_make_canonical_response(Certainty::Yes)
16-
}
17-
// FIXME(associated_const_equality): actually do something here.
18-
ty::TermKind::Const(_) => {
19-
self.evaluate_added_goals_and_make_canonical_response(Certainty::Yes)
20-
}
21-
}
11+
let tcx = self.tcx();
12+
let projection_term = match goal.predicate.term.unpack() {
13+
ty::TermKind::Ty(_) => goal.predicate.projection_ty.to_ty(tcx).into(),
14+
ty::TermKind::Const(_) => ty::Const::new_unevaluated(
15+
tcx,
16+
ty::UnevaluatedConst::new(
17+
goal.predicate.projection_ty.def_id,
18+
goal.predicate.projection_ty.args,
19+
),
20+
tcx.type_of(goal.predicate.projection_ty.def_id)
21+
.instantiate(tcx, goal.predicate.projection_ty.args),
22+
)
23+
.into(),
24+
};
25+
self.add_goal(goal.with(
26+
tcx,
27+
ty::PredicateKind::AliasRelate(
28+
projection_term,
29+
goal.predicate.term,
30+
ty::AliasRelationDirection::Equate,
31+
),
32+
));
33+
self.evaluate_added_goals_and_make_canonical_response(Certainty::Yes)
2234
}
2335
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// compile-flags: -Ztrait-solver=next
2+
// check-pass
3+
4+
fn map<T: Default, U, F: FnOnce(T) -> U>(f: F) {
5+
f(T::default());
6+
}
7+
8+
fn main() {
9+
map::<i32, _ /* ?U */, _ /* ?F */>(|x| x.to_string());
10+
// PREVIOUSLY when confirming the `map` call, we register:
11+
//
12+
// (1.) ?F: FnOnce<(i32,)>
13+
// (2.) <?F as FnOnce<(i32,)>>::Output projects-to ?U
14+
//
15+
// While (1.) is ambiguous, (2.) immediately gets processed
16+
// and we infer `?U := <?F as FnOnce<(i32,)>>::Output`.
17+
//
18+
// Thus, the only pending obligation that remains is (1.).
19+
// Since it is a trait obligation, we don't use it to deduce
20+
// the closure signature, and we fail!
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// compile-flags: -Ztrait-solver=next
2+
// check-pass
3+
4+
struct A;
5+
impl A {
6+
fn hi(self) {}
7+
}
8+
9+
fn hello() -> Result<(A,), ()> {
10+
Err(())
11+
}
12+
13+
fn main() {
14+
let x = hello().map(|(x,)| x.hi());
15+
}

tests/ui/traits/new-solver/generalize/generalize-proj-new-universe-index-2.stderr

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
error[E0284]: type annotations needed: cannot satisfy `<<Rigid as IdHigherRankedBound>::Assoc as WithAssoc<<Wrapper<Leaf> as Id>::Assoc>>::Assoc normalizes-to <<Leaf as WithAssoc<_>>::Assoc as Id>::Assoc`
1+
error[E0284]: type annotations needed
22
--> $DIR/generalize-proj-new-universe-index-2.rs:74:5
33
|
44
LL | bound::<<Rigid as IdHigherRankedBound>::Assoc, <Wrapper<Leaf> as Id>::Assoc, _>()
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot satisfy `<<Rigid as IdHigherRankedBound>::Assoc as WithAssoc<<Wrapper<Leaf> as Id>::Assoc>>::Assoc normalizes-to <<Leaf as WithAssoc<_>>::Assoc as Id>::Assoc`
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type of the type parameter `V` declared on the function `bound`
6+
|
7+
= note: cannot satisfy `<<Rigid as IdHigherRankedBound>::Assoc as WithAssoc<<Wrapper<Leaf> as Id>::Assoc>>::Assoc == _`
8+
note: required by a bound in `bound`
9+
--> $DIR/generalize-proj-new-universe-index-2.rs:69:21
10+
|
11+
LL | fn bound<T: ?Sized, U: ?Sized, V: ?Sized>()
12+
| ----- required by a bound in this function
13+
LL | where
14+
LL | T: WithAssoc<U, Assoc = V>,
15+
| ^^^^^^^^^ required by this bound in `bound`
616

717
error: aborting due to 1 previous error
818

0 commit comments

Comments
 (0)