mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
Add note when FnPtr
vs. FnDef
impl trait
I encountered an instance where an `FnPtr` implemented a trait, but I was passing an `FnDef`. To the end user, there is really no way to differentiate each of them, but it is necessary to cast to the generic function in order to compile. It is thus useful to suggest `as` in the help note, (even if the Fn output implements the trait).
This commit is contained in:
parent
c0b8735959
commit
2de9d679ad
@ -374,6 +374,7 @@ impl<'tcx> InferCtxtExt<'tcx> for InferCtxt<'tcx> {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
|
impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
|
||||||
fn report_fulfillment_errors(
|
fn report_fulfillment_errors(
|
||||||
&self,
|
&self,
|
||||||
@ -852,6 +853,29 @@ impl<'tcx> TypeErrCtxtExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
|
|||||||
let mut suggested =
|
let mut suggested =
|
||||||
self.suggest_dereferences(&obligation, &mut err, trait_predicate);
|
self.suggest_dereferences(&obligation, &mut err, trait_predicate);
|
||||||
suggested |= self.suggest_fn_call(&obligation, &mut err, trait_predicate);
|
suggested |= self.suggest_fn_call(&obligation, &mut err, trait_predicate);
|
||||||
|
let impl_candidates = self.find_similar_impl_candidates(trait_predicate);
|
||||||
|
suggested = if let &[cand] = &impl_candidates[..] {
|
||||||
|
let cand = cand.trait_ref;
|
||||||
|
if let (ty::FnPtr(_), ty::FnDef(..)) =
|
||||||
|
(cand.self_ty().kind(), trait_ref.self_ty().skip_binder().kind())
|
||||||
|
{
|
||||||
|
err.span_suggestion(
|
||||||
|
span.shrink_to_hi(),
|
||||||
|
format!(
|
||||||
|
"the trait `{}` is implemented for fn pointer `{}`, try casting using `as`",
|
||||||
|
cand.print_only_trait_path(),
|
||||||
|
cand.self_ty(),
|
||||||
|
),
|
||||||
|
format!(" as {}", cand.self_ty()),
|
||||||
|
Applicability::MaybeIncorrect,
|
||||||
|
);
|
||||||
|
true
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
} || suggested;
|
||||||
suggested |=
|
suggested |=
|
||||||
self.suggest_remove_reference(&obligation, &mut err, trait_predicate);
|
self.suggest_remove_reference(&obligation, &mut err, trait_predicate);
|
||||||
suggested |= self.suggest_semicolon_removal(
|
suggested |= self.suggest_semicolon_removal(
|
||||||
@ -1968,27 +1992,25 @@ impl<'tcx> InferCtxtPrivExt<'tcx> for TypeErrCtxt<'_, 'tcx> {
|
|||||||
candidates.sort();
|
candidates.sort();
|
||||||
candidates.dedup();
|
candidates.dedup();
|
||||||
let len = candidates.len();
|
let len = candidates.len();
|
||||||
if candidates.len() == 0 {
|
if candidates.is_empty() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if candidates.len() == 1 {
|
if let &[cand] = &candidates[..] {
|
||||||
let ty_desc = match candidates[0].self_ty().kind() {
|
let (desc, mention_castable) =
|
||||||
ty::FnPtr(_) => Some("fn pointer"),
|
match (cand.self_ty().kind(), trait_ref.self_ty().skip_binder().kind()) {
|
||||||
_ => None,
|
(ty::FnPtr(_), ty::FnDef(..)) => {
|
||||||
};
|
(" implemented for fn pointer `", ", cast using `as`")
|
||||||
let the_desc = match ty_desc {
|
}
|
||||||
Some(desc) => format!(" implemented for {} `", desc),
|
(ty::FnPtr(_), _) => (" implemented for fn pointer `", ""),
|
||||||
None => " implemented for `".to_string(),
|
_ => (" implemented for `", ""),
|
||||||
};
|
};
|
||||||
err.highlighted_help(vec![
|
err.highlighted_help(vec![
|
||||||
(
|
(format!("the trait `{}` ", cand.print_only_trait_path()), Style::NoStyle),
|
||||||
format!("the trait `{}` ", candidates[0].print_only_trait_path()),
|
|
||||||
Style::NoStyle,
|
|
||||||
),
|
|
||||||
("is".to_string(), Style::Highlight),
|
("is".to_string(), Style::Highlight),
|
||||||
(the_desc, Style::NoStyle),
|
(desc.to_string(), Style::NoStyle),
|
||||||
(candidates[0].self_ty().to_string(), Style::Highlight),
|
(cand.self_ty().to_string(), Style::Highlight),
|
||||||
("`".to_string(), Style::NoStyle),
|
("`".to_string(), Style::NoStyle),
|
||||||
|
(mention_castable.to_string(), Style::NoStyle),
|
||||||
]);
|
]);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
26
tests/ui/traits/fn-trait-cast-diagnostic.rs
Normal file
26
tests/ui/traits/fn-trait-cast-diagnostic.rs
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
// There are two different instances to check that even if
|
||||||
|
// the trait is implemented for the output of a function,
|
||||||
|
// it will still be displayed if the function itself implements a trait.
|
||||||
|
trait Foo {}
|
||||||
|
|
||||||
|
impl Foo for fn() -> bool {}
|
||||||
|
impl Foo for bool {}
|
||||||
|
|
||||||
|
fn example() -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
trait NoOtherFoo {}
|
||||||
|
|
||||||
|
impl NoOtherFoo for fn() -> bool {}
|
||||||
|
|
||||||
|
fn do_on_foo(v: impl Foo) {}
|
||||||
|
fn do_on_single_foo(v: impl NoOtherFoo) {}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
do_on_foo(example);
|
||||||
|
//~^ ERROR the trait bound
|
||||||
|
|
||||||
|
do_on_single_foo(example);
|
||||||
|
//~^ ERROR the trait bound
|
||||||
|
}
|
43
tests/ui/traits/fn-trait-cast-diagnostic.stderr
Normal file
43
tests/ui/traits/fn-trait-cast-diagnostic.stderr
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
error[E0277]: the trait bound `fn() -> bool {example}: Foo` is not satisfied
|
||||||
|
--> $DIR/fn-trait-cast-diagnostic.rs:21:15
|
||||||
|
|
|
||||||
|
LL | do_on_foo(example);
|
||||||
|
| --------- ^^^^^^^ the trait `Foo` is not implemented for fn item `fn() -> bool {example}`
|
||||||
|
| |
|
||||||
|
| required by a bound introduced by this call
|
||||||
|
|
|
||||||
|
note: required by a bound in `do_on_foo`
|
||||||
|
--> $DIR/fn-trait-cast-diagnostic.rs:17:22
|
||||||
|
|
|
||||||
|
LL | fn do_on_foo(v: impl Foo) {}
|
||||||
|
| ^^^ required by this bound in `do_on_foo`
|
||||||
|
help: use parentheses to call this function
|
||||||
|
|
|
||||||
|
LL | do_on_foo(example());
|
||||||
|
| ++
|
||||||
|
help: the trait `Foo` is implemented for fn pointer `fn() -> bool`, try casting using `as`
|
||||||
|
|
|
||||||
|
LL | do_on_foo(example as fn() -> bool);
|
||||||
|
| +++++++++++++++
|
||||||
|
|
||||||
|
error[E0277]: the trait bound `fn() -> bool {example}: NoOtherFoo` is not satisfied
|
||||||
|
--> $DIR/fn-trait-cast-diagnostic.rs:24:22
|
||||||
|
|
|
||||||
|
LL | do_on_single_foo(example);
|
||||||
|
| ---------------- ^^^^^^^ the trait `NoOtherFoo` is not implemented for fn item `fn() -> bool {example}`
|
||||||
|
| |
|
||||||
|
| required by a bound introduced by this call
|
||||||
|
|
|
||||||
|
note: required by a bound in `do_on_single_foo`
|
||||||
|
--> $DIR/fn-trait-cast-diagnostic.rs:18:29
|
||||||
|
|
|
||||||
|
LL | fn do_on_single_foo(v: impl NoOtherFoo) {}
|
||||||
|
| ^^^^^^^^^^ required by this bound in `do_on_single_foo`
|
||||||
|
help: the trait `NoOtherFoo` is implemented for fn pointer `fn() -> bool`, try casting using `as`
|
||||||
|
|
|
||||||
|
LL | do_on_single_foo(example as fn() -> bool);
|
||||||
|
| +++++++++++++++
|
||||||
|
|
||||||
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
For more information about this error, try `rustc --explain E0277`.
|
@ -6,12 +6,15 @@ LL | takes(function);
|
|||||||
| |
|
| |
|
||||||
| required by a bound introduced by this call
|
| required by a bound introduced by this call
|
||||||
|
|
|
|
||||||
= help: the trait `Trait` is implemented for fn pointer `fn(Argument) -> Return`
|
|
||||||
note: required by a bound in `takes`
|
note: required by a bound in `takes`
|
||||||
--> $DIR/issue-99875.rs:9:18
|
--> $DIR/issue-99875.rs:9:18
|
||||||
|
|
|
|
||||||
LL | fn takes(_: impl Trait) {}
|
LL | fn takes(_: impl Trait) {}
|
||||||
| ^^^^^ required by this bound in `takes`
|
| ^^^^^ required by this bound in `takes`
|
||||||
|
help: the trait `Trait` is implemented for fn pointer `fn(Argument) -> Return`, try casting using `as`
|
||||||
|
|
|
||||||
|
LL | takes(function as fn(Argument) -> Return);
|
||||||
|
| +++++++++++++++++++++++++
|
||||||
|
|
||||||
error[E0277]: the trait bound `[closure@$DIR/issue-99875.rs:14:11: 14:34]: Trait` is not satisfied
|
error[E0277]: the trait bound `[closure@$DIR/issue-99875.rs:14:11: 14:34]: Trait` is not satisfied
|
||||||
--> $DIR/issue-99875.rs:14:11
|
--> $DIR/issue-99875.rs:14:11
|
||||||
|
Loading…
Reference in New Issue
Block a user