Skip to content

Commit f034cb4

Browse files
print argument name in arg mismatch if possible
1 parent 984eab5 commit f034cb4

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use rustc_middle::ty::adjustment::AllowTwoPhase;
2828
use rustc_middle::ty::visit::TypeVisitable;
2929
use rustc_middle::ty::{self, DefIdTree, IsSuggestable, Ty, TypeSuperVisitable, TypeVisitor};
3030
use rustc_session::Session;
31-
use rustc_span::symbol::Ident;
31+
use rustc_span::symbol::{kw, Ident};
3232
use rustc_span::{self, sym, Span};
3333
use rustc_trait_selection::traits::{self, ObligationCauseCode, SelectionContext};
3434

@@ -1141,6 +1141,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
11411141
"()".to_string()
11421142
} else if expected_ty.is_suggestable(tcx, false) {
11431143
format!("/* {} */", expected_ty)
1144+
} else if let Some(fn_def_id) = fn_def_id
1145+
&& self.tcx.def_kind(fn_def_id).is_fn_like()
1146+
&& let self_implicit = matches!(call_expr.kind, hir::ExprKind::MethodCall(..)) as usize
1147+
&& let Some(arg) = self.tcx.fn_arg_names(fn_def_id).get(expected_idx.as_usize() + self_implicit)
1148+
&& arg.name != kw::SelfLower
1149+
{
1150+
format!("/* {} */", arg.name)
11441151
} else {
11451152
"/* value */".to_string()
11461153
}

src/test/ui/argument-suggestions/basic.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ LL | let closure = |x| x;
9494
| ^^^
9595
help: provide the argument
9696
|
97-
LL | closure(/* value */);
98-
| ~~~~~~~~~~~~~
97+
LL | closure(/* x */);
98+
| ~~~~~~~~~
9999

100100
error: aborting due to 6 previous errors
101101

src/test/ui/error-codes/E0057.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ LL | let f = |x| x * 3;
1111
| ^^^
1212
help: provide the argument
1313
|
14-
LL | let a = f(/* value */);
15-
| ~~~~~~~~~~~~~
14+
LL | let a = f(/* x */);
15+
| ~~~~~~~~~
1616

1717
error[E0057]: this function takes 1 argument but 2 arguments were supplied
1818
--> $DIR/E0057.rs:5:13

src/test/ui/higher-rank-trait-bounds/issue-58451.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ LL | fn f<I>(i: I)
1111
| ^ ----
1212
help: provide the argument
1313
|
14-
LL | f(&[f(/* value */)]);
15-
| ~~~~~~~~~~~~~
14+
LL | f(&[f(/* i */)]);
15+
| ~~~~~~~~~
1616

1717
error: aborting due to previous error
1818

src/test/ui/issues/issue-3044.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ help: provide the argument
1313
|
1414
LL ~ needlesArr.iter().fold(|x, y| {
1515
LL +
16-
LL ~ }, /* value */);
16+
LL ~ }, /* f */);
1717
|
1818

1919
error: aborting due to previous error

0 commit comments

Comments
 (0)