Skip to content

Commit be564a8

Browse files
committed
Print note with closure signature on type mismatch
1 parent 13e63f7 commit be564a8

File tree

4 files changed

+48
-2
lines changed

4 files changed

+48
-2
lines changed

compiler/rustc_errors/src/diagnostic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ impl<'a, G: EmissionGuarantee> Diag<'a, G> {
730730
} }
731731

732732
#[rustc_lint_diagnostics]
733-
fn highlighted_note(&mut self, msg: Vec<StringPart>) -> &mut Self {
733+
pub fn highlighted_note(&mut self, msg: Vec<StringPart>) -> &mut Self {
734734
self.sub_with_highlights(Level::Note, msg, MultiSpan::new());
735735
self
736736
}

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

+18-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ use crate::traits::{
6161
use rustc_data_structures::fx::{FxIndexMap, FxIndexSet};
6262
use rustc_errors::{
6363
codes::*, pluralize, struct_span_code_err, Applicability, Diag, DiagCtxt, DiagStyledString,
64-
ErrorGuaranteed, IntoDiagArg,
64+
ErrorGuaranteed, IntoDiagArg, StringPart,
6565
};
6666
use rustc_hir as hir;
6767
use rustc_hir::def::DefKind;
@@ -1917,6 +1917,23 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
19171917
);
19181918
if !is_simple_error || terr.must_include_note() {
19191919
diag.note_expected_found(&expected_label, expected, &found_label, found);
1920+
1921+
if let Some(ty::Closure(_, args)) =
1922+
exp_found.map(|expected_type_found| expected_type_found.found.kind())
1923+
{
1924+
diag.highlighted_note(vec![
1925+
StringPart::normal("closure has signature: `"),
1926+
StringPart::highlighted(
1927+
self.tcx
1928+
.signature_unclosure(
1929+
args.as_closure().sig(),
1930+
rustc_hir::Unsafety::Normal,
1931+
)
1932+
.to_string(),
1933+
),
1934+
StringPart::normal("`"),
1935+
]);
1936+
}
19201937
}
19211938
}
19221939
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
fn main() {
2+
let x = |a: u8, b: (usize, u32), c: fn() -> char| -> String { "I love beans.".to_string() };
3+
//~^ NOTE: the found closure
4+
5+
let x: fn(i32) = x;
6+
//~^ ERROR: 5:22: 5:23: mismatched types [E0308]
7+
//~| NOTE: incorrect number of function parameters
8+
//~| NOTE: expected due to this
9+
//~| NOTE: expected fn pointer `fn(i32)`
10+
//~| NOTE: closure has signature: `fn(u8, (usize, u32), fn() -> char) -> String`
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/hint-closure-signature-119266.rs:5:22
3+
|
4+
LL | let x = |a: u8, b: (usize, u32), c: fn() -> char| -> String { "I love beans.".to_string() };
5+
| --------------------------------------------------- the found closure
6+
...
7+
LL | let x: fn(i32) = x;
8+
| ------- ^ incorrect number of function parameters
9+
| |
10+
| expected due to this
11+
|
12+
= note: expected fn pointer `fn(i32)`
13+
found closure `{closure@$DIR/hint-closure-signature-119266.rs:2:13: 2:64}`
14+
= note: closure has signature: `fn(u8, (usize, u32), fn() -> char) -> String`
15+
16+
error: aborting due to 1 previous error
17+
18+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)