Point to where missing return type should go
This commit is contained in:
parent
eea26141ec
commit
137b6d0b01
@ -782,8 +782,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
hir::FnRetTy::Return(hir_ty) => {
|
||||
let span = hir_ty.span;
|
||||
|
||||
if let hir::TyKind::OpaqueDef(item_id, ..) = hir_ty.kind
|
||||
&& let hir::Node::Item(hir::Item {
|
||||
kind: hir::ItemKind::OpaqueTy(op_ty),
|
||||
@ -799,14 +797,13 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||
debug!(?found);
|
||||
if found.is_suggestable(self.tcx, false) {
|
||||
if term.span.is_empty() {
|
||||
err.subdiagnostic(errors::AddReturnTypeSuggestion::Add { span, found: found.to_string() });
|
||||
err.subdiagnostic(errors::AddReturnTypeSuggestion::Add { span: term.span, found: found.to_string() });
|
||||
return true;
|
||||
} else {
|
||||
err.subdiagnostic(errors::ExpectedReturnTypeLabel::Other { span, expected });
|
||||
err.subdiagnostic(errors::ExpectedReturnTypeLabel::Other { span: term.span, expected });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
// Only point to return type if the expected type is the return type, as if they
|
||||
// are not, the expectation must have been caused by something else.
|
||||
debug!("return type {:?}", hir_ty);
|
||||
@ -815,14 +812,15 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
||||
debug!("expected type {:?}", expected);
|
||||
let bound_vars = self.tcx.late_bound_vars(hir_ty.hir_id.owner.into());
|
||||
let ty = Binder::bind_with_vars(ty, bound_vars);
|
||||
let ty = self.normalize(span, ty);
|
||||
let ty = self.normalize(hir_ty.span, ty);
|
||||
let ty = self.tcx.erase_late_bound_regions(ty);
|
||||
if self.can_coerce(expected, ty) {
|
||||
err.subdiagnostic(errors::ExpectedReturnTypeLabel::Other { span, expected });
|
||||
err.subdiagnostic(errors::ExpectedReturnTypeLabel::Other { span: hir_ty.span, expected });
|
||||
self.try_suggest_return_impl_trait(err, expected, ty, fn_id);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
false
|
||||
|
@ -194,13 +194,13 @@ impl<'a> SourceKindMultiSuggestion<'a> {
|
||||
data: &'a FnRetTy<'a>,
|
||||
should_wrap_expr: Option<Span>,
|
||||
) -> Self {
|
||||
let (arrow, post) = match data {
|
||||
FnRetTy::DefaultReturn(_) => ("-> ", " "),
|
||||
_ => ("", ""),
|
||||
let arrow = match data {
|
||||
FnRetTy::DefaultReturn(_) => " -> ",
|
||||
_ => "",
|
||||
};
|
||||
let (start_span, start_span_code, end_span) = match should_wrap_expr {
|
||||
Some(end_span) => (data.span(), format!("{arrow}{ty_info}{post}{{ "), Some(end_span)),
|
||||
None => (data.span(), format!("{arrow}{ty_info}{post}"), None),
|
||||
Some(end_span) => (data.span(), format!("{arrow}{ty_info} {{"), Some(end_span)),
|
||||
None => (data.span(), format!("{arrow}{ty_info}"), None),
|
||||
};
|
||||
Self::ClosureReturn { start_span, start_span_code, end_span }
|
||||
}
|
||||
|
@ -247,7 +247,7 @@ impl<'a> Parser<'a> {
|
||||
)?;
|
||||
FnRetTy::Ty(ty)
|
||||
} else {
|
||||
FnRetTy::Default(self.token.span.shrink_to_lo())
|
||||
FnRetTy::Default(self.prev_token.span.shrink_to_hi())
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
error: implicit types in closure signatures are forbidden when `for<...>` is present
|
||||
--> $DIR/implicit-return.rs:4:34
|
||||
--> $DIR/implicit-return.rs:4:33
|
||||
|
|
||||
LL | let _f = for<'a> |_: &'a ()| {};
|
||||
| ------- ^
|
||||
|
@ -41,7 +41,7 @@ LL | let _ = for<'a> |x: &'a ()| -> &() { x };
|
||||
| ^ explicit lifetime name needed here
|
||||
|
||||
error: implicit types in closure signatures are forbidden when `for<...>` is present
|
||||
--> $DIR/implicit-stuff.rs:5:22
|
||||
--> $DIR/implicit-stuff.rs:5:21
|
||||
|
|
||||
LL | let _ = for<> || {};
|
||||
| ----- ^
|
||||
|
@ -28,7 +28,7 @@ LL | fn foo(self);
|
||||
found signature `fn(Box<MyFuture>)`
|
||||
|
||||
error[E0053]: method `bar` has an incompatible type for trait
|
||||
--> $DIR/bad-self-type.rs:24:18
|
||||
--> $DIR/bad-self-type.rs:24:17
|
||||
|
|
||||
LL | fn bar(self) {}
|
||||
| ^ expected `Option<()>`, found `()`
|
||||
|
@ -1,5 +1,5 @@
|
||||
error[E0308]: lang item `start` function has wrong type
|
||||
--> $DIR/start_lang_item_args.rs:29:84
|
||||
--> $DIR/start_lang_item_args.rs:29:83
|
||||
|
|
||||
LL | fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) {}
|
||||
| ^ expected `isize`, found `()`
|
||||
|
@ -25,7 +25,7 @@ LL | for <Foo>::Bar in x {}
|
||||
= help: consider removing `for<...>`
|
||||
|
||||
error: implicit types in closure signatures are forbidden when `for<...>` is present
|
||||
--> $DIR/recover-quantified-closure.rs:2:25
|
||||
--> $DIR/recover-quantified-closure.rs:2:24
|
||||
|
|
||||
LL | for<'a> |x: &'a u8| *x + 1;
|
||||
| ------- ^
|
||||
|
14
tests/ui/suggestions/suggest-ret-on-async-w-late.fixed
Normal file
14
tests/ui/suggestions/suggest-ret-on-async-w-late.fixed
Normal file
@ -0,0 +1,14 @@
|
||||
// edition: 2021
|
||||
// run-rustfix
|
||||
|
||||
#![allow(unused)]
|
||||
|
||||
// Make sure we don't ICE when suggesting a return type
|
||||
// for an async fn that has late-bound vars...
|
||||
|
||||
async fn ice(_: &i32) -> bool {
|
||||
true
|
||||
//~^ ERROR mismatched types
|
||||
}
|
||||
|
||||
fn main() {}
|
@ -1,4 +1,7 @@
|
||||
// edition: 2021
|
||||
// run-rustfix
|
||||
|
||||
#![allow(unused)]
|
||||
|
||||
// Make sure we don't ICE when suggesting a return type
|
||||
// for an async fn that has late-bound vars...
|
||||
|
@ -1,8 +1,8 @@
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/suggest-ret-on-async-w-late.rs:7:5
|
||||
--> $DIR/suggest-ret-on-async-w-late.rs:10:5
|
||||
|
|
||||
LL | async fn ice(_: &i32) {
|
||||
| --------------------- help: try adding a return type: `-> bool`
|
||||
| - help: try adding a return type: `-> bool`
|
||||
LL | true
|
||||
| ^^^^ expected `()`, found `bool`
|
||||
|
||||
|
@ -2,7 +2,7 @@ error[E0308]: mismatched types
|
||||
--> $DIR/issue-90027-async-fn-return-suggestion.rs:4:5
|
||||
|
|
||||
LL | async fn hello() {
|
||||
| ---------------- help: try adding a return type: `-> i32`
|
||||
| - help: try adding a return type: `-> i32`
|
||||
LL | 0
|
||||
| ^ expected `()`, found integer
|
||||
|
||||
@ -10,7 +10,7 @@ error[E0308]: mismatched types
|
||||
--> $DIR/issue-90027-async-fn-return-suggestion.rs:9:5
|
||||
|
|
||||
LL | async fn world() -> () {
|
||||
| ---------------------- expected `()` because of return type
|
||||
| -- expected `()` because of return type
|
||||
LL | 0
|
||||
| ^ expected `()`, found integer
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user