Skip to content

Commit fdd6f4e

Browse files
committed
Add in ValuePair::Term
This adds in an enum when matching on positions which can either be types or consts. It will default to emitting old special cased error messages for types.
1 parent f624427 commit fdd6f4e

File tree

5 files changed

+28
-16
lines changed

5 files changed

+28
-16
lines changed

compiler/rustc_infer/src/infer/at.rs

+2-10
Original file line numberDiff line numberDiff line change
@@ -288,21 +288,13 @@ impl<'tcx> ToTrace<'tcx> for &'tcx Const<'tcx> {
288288

289289
impl<'tcx> ToTrace<'tcx> for ty::Term<'tcx> {
290290
fn to_trace(
291-
tcx: TyCtxt<'tcx>,
291+
_: TyCtxt<'tcx>,
292292
cause: &ObligationCause<'tcx>,
293293
a_is_expected: bool,
294294
a: Self,
295295
b: Self,
296296
) -> TypeTrace<'tcx> {
297-
match (a, b) {
298-
(ty::Term::Ty(a), ty::Term::Ty(b)) => {
299-
ToTrace::to_trace(tcx, cause, a_is_expected, a, b)
300-
}
301-
(ty::Term::Const(a), ty::Term::Const(b)) => {
302-
ToTrace::to_trace(tcx, cause, a_is_expected, a, b)
303-
}
304-
(_, _) => todo!(),
305-
}
297+
TypeTrace { cause: cause.clone(), values: Terms(ExpectedFound::new(a_is_expected, a, b)) }
306298
}
307299
}
308300

compiler/rustc_infer/src/infer/error_reporting/mod.rs

+19
Original file line numberDiff line numberDiff line change
@@ -2127,6 +2127,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
21272127
infer::Types(exp_found) => self.expected_found_str_ty(exp_found),
21282128
infer::Regions(exp_found) => self.expected_found_str(exp_found),
21292129
infer::Consts(exp_found) => self.expected_found_str(exp_found),
2130+
infer::Terms(exp_found) => self.expected_found_str_term(exp_found),
21302131
infer::TraitRefs(exp_found) => {
21312132
let pretty_exp_found = ty::error::ExpectedFound {
21322133
expected: exp_found.expected.print_only_trait_path(),
@@ -2166,6 +2167,24 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
21662167
Some(self.cmp(exp_found.expected, exp_found.found))
21672168
}
21682169

2170+
fn expected_found_str_term(
2171+
&self,
2172+
exp_found: ty::error::ExpectedFound<ty::Term<'tcx>>,
2173+
) -> Option<(DiagnosticStyledString, DiagnosticStyledString)> {
2174+
let exp_found = self.resolve_vars_if_possible(exp_found);
2175+
if exp_found.references_error() {
2176+
return None;
2177+
}
2178+
2179+
Some(match (exp_found.expected, exp_found.found) {
2180+
(ty::Term::Ty(expected), ty::Term::Ty(found)) => self.cmp(expected, found),
2181+
(expected, found) => (
2182+
DiagnosticStyledString::highlighted(expected.to_string()),
2183+
DiagnosticStyledString::highlighted(found.to_string()),
2184+
),
2185+
})
2186+
}
2187+
21692188
/// Returns a string of the form "expected `{}`, found `{}`".
21702189
fn expected_found_str<T: fmt::Display + TypeFoldable<'tcx>>(
21712190
&self,

compiler/rustc_infer/src/infer/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ pub enum ValuePairs<'tcx> {
371371
Types(ExpectedFound<Ty<'tcx>>),
372372
Regions(ExpectedFound<ty::Region<'tcx>>),
373373
Consts(ExpectedFound<&'tcx ty::Const<'tcx>>),
374+
Terms(ExpectedFound<ty::Term<'tcx>>),
374375
TraitRefs(ExpectedFound<ty::TraitRef<'tcx>>),
375376
PolyTraitRefs(ExpectedFound<ty::PolyTraitRef<'tcx>>),
376377
}

src/test/ui/associated-types/higher-ranked-projection.bad.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ error[E0308]: mismatched types
44
LL | foo(());
55
| ^^^ lifetime mismatch
66
|
7-
= note: expected reference `&'a ()`
8-
found type `&()`
7+
= note: expected type `&'a ()`
8+
found type `&()`
99
note: the lifetime requirement is introduced here
1010
--> $DIR/higher-ranked-projection.rs:15:33
1111
|

src/test/ui/lifetimes/issue-79187-2.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ error[E0308]: mismatched types
2323
LL | take_foo(|a: &i32| a);
2424
| ^^^^^^^^ lifetime mismatch
2525
|
26-
= note: expected reference `&i32`
27-
found reference `&i32`
26+
= note: expected type `&i32`
27+
found type `&i32`
2828
note: the anonymous lifetime #1 defined here doesn't meet the lifetime requirements
2929
--> $DIR/issue-79187-2.rs:9:14
3030
|
@@ -42,8 +42,8 @@ error[E0308]: mismatched types
4242
LL | take_foo(|a: &i32| -> &i32 { a });
4343
| ^^^^^^^^ lifetime mismatch
4444
|
45-
= note: expected reference `&i32`
46-
found reference `&i32`
45+
= note: expected type `&i32`
46+
found type `&i32`
4747
note: the anonymous lifetime #1 defined here doesn't meet the lifetime requirements
4848
--> $DIR/issue-79187-2.rs:10:14
4949
|

0 commit comments

Comments
 (0)