Skip to content

Commit 95e2707

Browse files
Stop using resolve_vars_with_obligations in typeck
1 parent a1eceec commit 95e2707

File tree

7 files changed

+31
-26
lines changed

7 files changed

+31
-26
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
208208
);
209209
}
210210

211+
// Guide inference on the formal output ty if necessary.
212+
self.select_obligations_where_possible(|_| {});
213+
211214
// First, let's unify the formal method signature with the expectation eagerly.
212215
// We use this to guide coercion inference; it's output is "fudged" which means
213216
// any remaining type variables are assigned to new, unrelated variables. This
214217
// is because the inference guidance here is only speculative.
215-
let formal_output = self.resolve_vars_with_obligations(formal_output);
216218
let expected_input_tys: Option<Vec<_>> = expectation
217219
.only_has_type(self)
218220
.and_then(|expected_output| {

compiler/rustc_hir_typeck/src/op.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
231231
self.check_expr(lhs_expr)
232232
}
233233
};
234-
let lhs_ty = self.resolve_vars_with_obligations(lhs_ty);
234+
235+
// Guide inference on the lhs ty if necessary.
236+
self.select_obligations_where_possible(|_| {});
237+
let lhs_ty = self.resolve_vars_if_possible(lhs_ty);
235238

236239
// N.B., as we have not yet type-checked the RHS, we don't have the
237240
// type at hand. Make a variable to represent it. The whole reason

tests/ui/delegation/correct_body_owner_parent_found_in_diagnostics.stderr

+9-9
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ LL | pub struct InvariantRef<'a, T: ?Sized>(&'a T, PhantomData<&'a mut &'a T>);
5252
LL | pub const NEW: Self = InvariantRef::new(&());
5353
| ^^^ function or associated item not found in `InvariantRef<'_, _>`
5454

55+
error[E0277]: the trait bound `u8: Trait` is not satisfied
56+
--> $DIR/correct_body_owner_parent_found_in_diagnostics.rs:22:12
57+
|
58+
LL | reuse <u8 as Trait>::{foo, bar, meh} { &const { InvariantRef::<'a>::NEW } }
59+
| ^^ the trait `Trait` is not implemented for `u8`
60+
|
61+
= help: the trait `Trait` is implemented for `Z`
62+
5563
error[E0308]: mismatched types
5664
--> $DIR/correct_body_owner_parent_found_in_diagnostics.rs:22:53
5765
|
@@ -68,6 +76,7 @@ LL | reuse <u8 as Trait>::{foo, bar, meh} { &const { InvariantRef::<'a>::NEW
6876
| ^^ the trait `Trait` is not implemented for `u8`
6977
|
7078
= help: the trait `Trait` is implemented for `Z`
79+
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
7180

7281
error[E0308]: mismatched types
7382
--> $DIR/correct_body_owner_parent_found_in_diagnostics.rs:22:53
@@ -98,15 +107,6 @@ LL | reuse <u8 as Trait>::{foo, bar, meh} { &const { InvariantRef::<'a>::NEW
98107
found struct `InvariantRef<'_, ()>`
99108
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
100109

101-
error[E0277]: the trait bound `u8: Trait` is not satisfied
102-
--> $DIR/correct_body_owner_parent_found_in_diagnostics.rs:22:12
103-
|
104-
LL | reuse <u8 as Trait>::{foo, bar, meh} { &const { InvariantRef::<'a>::NEW } }
105-
| ^^ the trait `Trait` is not implemented for `u8`
106-
|
107-
= help: the trait `Trait` is implemented for `Z`
108-
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
109-
110110
error: aborting due to 10 previous errors
111111

112112
Some errors have detailed explanations: E0261, E0277, E0308, E0599.

tests/ui/issues/issue-50781.stderr

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ LL | fn foo(&self) where Self: Trait;
1515
= help: only type `()` implements the trait, consider using it directly instead
1616

1717
error[E0038]: the trait `X` cannot be made into an object
18-
--> $DIR/issue-50781.rs:16:23
18+
--> $DIR/issue-50781.rs:16:6
1919
|
2020
LL | <dyn X as X>::foo(&());
21-
| ^^^ `X` cannot be made into an object
21+
| ^^^^^ `X` cannot be made into an object
2222
|
2323
note: for a trait to be "dyn-compatible" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
2424
--> $DIR/issue-50781.rs:4:8
@@ -29,13 +29,12 @@ LL | fn foo(&self) where Self: Trait;
2929
| ^^^ ...because method `foo` references the `Self` type in its `where` clause
3030
= help: consider moving `foo` to another trait
3131
= help: only type `()` implements the trait, consider using it directly instead
32-
= note: required for the cast from `&()` to `&dyn X`
3332

3433
error[E0038]: the trait `X` cannot be made into an object
35-
--> $DIR/issue-50781.rs:16:6
34+
--> $DIR/issue-50781.rs:16:23
3635
|
3736
LL | <dyn X as X>::foo(&());
38-
| ^^^^^ `X` cannot be made into an object
37+
| ^^^ `X` cannot be made into an object
3938
|
4039
note: for a trait to be "dyn-compatible" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
4140
--> $DIR/issue-50781.rs:4:8
@@ -46,6 +45,7 @@ LL | fn foo(&self) where Self: Trait;
4645
| ^^^ ...because method `foo` references the `Self` type in its `where` clause
4746
= help: consider moving `foo` to another trait
4847
= help: only type `()` implements the trait, consider using it directly instead
48+
= note: required for the cast from `&()` to `&dyn X`
4949

5050
error: aborting due to 3 previous errors
5151

tests/ui/overloaded/overloaded-calls-nontuple.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ LL | self.call_mut(z)
3939
note: required by a bound in `call_mut`
4040
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
4141

42-
error[E0059]: cannot use call notation; the first type parameter for the function trait is neither a tuple nor unit
42+
error[E0277]: `isize` is not a tuple
4343
--> $DIR/overloaded-calls-nontuple.rs:29:10
4444
|
4545
LL | drop(s(3))
46-
| ^^^^
46+
| ^^^^ the trait `Tuple` is not implemented for `isize`
4747

48-
error[E0277]: `isize` is not a tuple
48+
error[E0059]: cannot use call notation; the first type parameter for the function trait is neither a tuple nor unit
4949
--> $DIR/overloaded-calls-nontuple.rs:29:10
5050
|
5151
LL | drop(s(3))
52-
| ^^^^ the trait `Tuple` is not implemented for `isize`
52+
| ^^^^
5353

5454
error: aborting due to 7 previous errors
5555

tests/ui/suggestions/fn-trait-notation.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ LL | F: Fn<i32, Output = i32>,
3737
note: required by a bound in `Fn`
3838
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
3939

40-
error[E0059]: cannot use call notation; the first type parameter for the function trait is neither a tuple nor unit
40+
error[E0277]: `i32` is not a tuple
4141
--> $DIR/fn-trait-notation.rs:9:5
4242
|
4343
LL | f(3);
44-
| ^^^^
44+
| ^^^^ the trait `Tuple` is not implemented for `i32`
4545

46-
error[E0277]: `i32` is not a tuple
46+
error[E0059]: cannot use call notation; the first type parameter for the function trait is neither a tuple nor unit
4747
--> $DIR/fn-trait-notation.rs:9:5
4848
|
4949
LL | f(3);
50-
| ^^^^ the trait `Tuple` is not implemented for `i32`
50+
| ^^^^
5151

5252
error[E0308]: mismatched types
5353
--> $DIR/fn-trait-notation.rs:17:5

tests/ui/traits/next-solver/more-object-bound.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0271]: type mismatch resolving `<dyn Trait<A = A, B = B> as SuperTrait>::A == B`
2-
--> $DIR/more-object-bound.rs:12:5
2+
--> $DIR/more-object-bound.rs:12:17
33
|
44
LL | fn transmute<A, B>(x: A) -> B {
55
| - -
@@ -9,7 +9,7 @@ LL | fn transmute<A, B>(x: A) -> B {
99
| found type parameter
1010
| expected type parameter
1111
LL | foo::<A, B, dyn Trait<A = A, B = B>>(x)
12-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected type parameter `A`, found type parameter `B`
12+
| ^^^^^^^^^^^^^^^^^^^^^^^ expected type parameter `A`, found type parameter `B`
1313
|
1414
= note: expected type parameter `A`
1515
found type parameter `B`

0 commit comments

Comments
 (0)