Skip to content

Commit 9323ba5

Browse files
Remove MaybeForgetReturn suggestion
1 parent 794c124 commit 9323ba5

File tree

7 files changed

+4
-83
lines changed

7 files changed

+4
-83
lines changed

compiler/rustc_errors/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,6 @@ pub enum StashKey {
599599
MaybeFruTypo,
600600
CallAssocMethod,
601601
AssociatedTypeSuggestion,
602-
MaybeForgetReturn,
603602
/// Query cycle detected, stashing in favor of a better error.
604603
Cycle,
605604
UndeterminedMacroResolution,

compiler/rustc_hir_typeck/src/fn_ctxt/_impl.rs

-5
Original file line numberDiff line numberDiff line change
@@ -666,12 +666,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
666666

667667
if !errors.is_empty() {
668668
self.adjust_fulfillment_errors_for_expr_obligation(&mut errors);
669-
let errors_causecode = errors
670-
.iter()
671-
.map(|e| (e.obligation.cause.span, e.root_obligation.cause.code().clone()))
672-
.collect::<Vec<_>>();
673669
self.err_ctxt().report_fulfillment_errors(errors);
674-
self.collect_unused_stmts_for_coerce_return_ty(errors_causecode);
675670
}
676671
}
677672

compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs

+1-59
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ use std::{fmt, iter, mem};
33
use itertools::Itertools;
44
use rustc_data_structures::fx::FxIndexSet;
55
use rustc_errors::codes::*;
6-
use rustc_errors::{
7-
Applicability, Diag, ErrorGuaranteed, MultiSpan, StashKey, a_or_an, listify, pluralize,
8-
};
6+
use rustc_errors::{Applicability, Diag, ErrorGuaranteed, MultiSpan, a_or_an, listify, pluralize};
97
use rustc_hir::def::{CtorOf, DefKind, Res};
108
use rustc_hir::def_id::DefId;
119
use rustc_hir::intravisit::Visitor;
@@ -2167,62 +2165,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
21672165
}
21682166
}
21692167

2170-
pub(super) fn collect_unused_stmts_for_coerce_return_ty(
2171-
&self,
2172-
errors_causecode: Vec<(Span, ObligationCauseCode<'tcx>)>,
2173-
) {
2174-
for (span, code) in errors_causecode {
2175-
self.dcx().try_steal_modify_and_emit_err(span, StashKey::MaybeForgetReturn, |err| {
2176-
if let Some(fn_sig) = self.body_fn_sig()
2177-
&& let ObligationCauseCode::WhereClauseInExpr(_, _, binding_hir_id, ..) = code
2178-
&& !fn_sig.output().is_unit()
2179-
{
2180-
let mut block_num = 0;
2181-
let mut found_semi = false;
2182-
for (hir_id, node) in self.tcx.hir_parent_iter(binding_hir_id) {
2183-
// Don't proceed into parent bodies
2184-
if hir_id.owner != binding_hir_id.owner {
2185-
break;
2186-
}
2187-
match node {
2188-
hir::Node::Stmt(stmt) => {
2189-
if let hir::StmtKind::Semi(expr) = stmt.kind {
2190-
let expr_ty = self.typeck_results.borrow().expr_ty(expr);
2191-
let return_ty = fn_sig.output();
2192-
if !matches!(expr.kind, hir::ExprKind::Ret(..))
2193-
&& self.may_coerce(expr_ty, return_ty)
2194-
{
2195-
found_semi = true;
2196-
}
2197-
}
2198-
}
2199-
hir::Node::Block(_block) => {
2200-
if found_semi {
2201-
block_num += 1;
2202-
}
2203-
}
2204-
hir::Node::Item(item) => {
2205-
if let hir::ItemKind::Fn { .. } = item.kind {
2206-
break;
2207-
}
2208-
}
2209-
_ => {}
2210-
}
2211-
}
2212-
if block_num > 1 && found_semi {
2213-
err.span_suggestion_verbose(
2214-
// use the span of the *whole* expr
2215-
self.tcx.hir().span(binding_hir_id).shrink_to_lo(),
2216-
"you might have meant to return this to infer its type parameters",
2217-
"return ",
2218-
Applicability::MaybeIncorrect,
2219-
);
2220-
}
2221-
}
2222-
});
2223-
}
2224-
}
2225-
22262168
/// Given a vector of fulfillment errors, try to adjust the spans of the
22272169
/// errors to more accurately point at the cause of the failure.
22282170
///

compiler/rustc_trait_selection/src/error_reporting/traits/ambiguity.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
use std::ops::ControlFlow;
22

3-
use rustc_errors::{
4-
Applicability, Diag, E0283, E0284, E0790, MultiSpan, StashKey, struct_span_code_err,
5-
};
3+
use rustc_errors::{Applicability, Diag, E0283, E0284, E0790, MultiSpan, struct_span_code_err};
64
use rustc_hir as hir;
75
use rustc_hir::LangItem;
86
use rustc_hir::def::{DefKind, Res};
@@ -197,7 +195,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
197195
// be ignoring the fact that we don't KNOW the type works
198196
// out. Though even that would probably be harmless, given that
199197
// we're only talking about builtin traits, which are known to be
200-
// inhabited. We used to check for `self.tcx.sess.has_errors()` to
198+
// inhabited. We used to check for `self.tainted_by_errors()` to
201199
// avoid inundating the user with unnecessary errors, but we now
202200
// check upstream for type errors and don't add the obligations to
203201
// begin with in those cases.
@@ -211,7 +209,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
211209
TypeAnnotationNeeded::E0282,
212210
false,
213211
);
214-
return err.stash(span, StashKey::MaybeForgetReturn).unwrap();
212+
return err.emit();
215213
}
216214
Some(e) => return e,
217215
}

tests/ui/inference/issue-86094-suggest-add-return-to-coerce-ret-ty.stderr

-8
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ help: consider specifying the generic arguments
88
|
99
LL | Err::<T, MyError>(MyError);
1010
| ++++++++++++++
11-
help: you might have meant to return this to infer its type parameters
12-
|
13-
LL | return Err(MyError);
14-
| ++++++
1511

1612
error[E0282]: type annotations needed
1713
--> $DIR/issue-86094-suggest-add-return-to-coerce-ret-ty.rs:14:9
@@ -23,10 +19,6 @@ help: consider specifying the generic arguments
2319
|
2420
LL | Ok::<(), E>(());
2521
| +++++++++
26-
help: you might have meant to return this to infer its type parameters
27-
|
28-
LL | return Ok(());
29-
| ++++++
3022

3123
error[E0308]: mismatched types
3224
--> $DIR/issue-86094-suggest-add-return-to-coerce-ret-ty.rs:21:20

tests/ui/return/tail-expr-as-potential-return.rs

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ fn method() -> Option<i32> {
6060
Receiver.generic();
6161
//~^ ERROR type annotations needed
6262
//~| HELP consider specifying the generic argument
63-
//~| HELP you might have meant to return this to infer its type parameters
6463
}
6564

6665
None

tests/ui/return/tail-expr-as-potential-return.stderr

-4
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ help: consider specifying the generic argument
5757
|
5858
LL | Receiver.generic::<T>();
5959
| +++++
60-
help: you might have meant to return this to infer its type parameters
61-
|
62-
LL | return Receiver.generic();
63-
| ++++++
6460

6561
error: aborting due to 4 previous errors
6662

0 commit comments

Comments
 (0)