Skip to content

Commit a53f280

Browse files
committed
Suggest ; after bare match expression E0308
Fix #72634.
1 parent cdddcd3 commit a53f280

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

compiler/rustc_hir_typeck/src/_match.rs

+1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
121121
prior_arm_ty,
122122
prior_arm_span,
123123
scrut_span: scrut.span,
124+
scrut_hir_id: scrut.hir_id,
124125
source: match_src,
125126
prior_arms: other_arms.clone(),
126127
opt_suggest_box_span,

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

+13
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,7 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
775775
ref prior_arms,
776776
opt_suggest_box_span,
777777
scrut_span,
778+
scrut_hir_id,
778779
..
779780
}) => match source {
780781
hir::MatchSource::TryDesugar(scrut_hir_id) => {
@@ -842,6 +843,18 @@ impl<'tcx> TypeErrCtxt<'_, 'tcx> {
842843
) {
843844
err.subdiagnostic(subdiag);
844845
}
846+
if let Some(hir::Node::Expr(m)) = self.tcx.hir().find_parent(scrut_hir_id)
847+
&& let Some(hir::Node::Stmt(stmt)) = self.tcx.hir().find_parent(m.hir_id)
848+
&& let hir::StmtKind::Expr(_) = stmt.kind
849+
{
850+
err.span_suggestion_verbose(
851+
stmt.span.shrink_to_hi(),
852+
"consider using a semicolon here, but this will discard any values \
853+
in the match arms",
854+
";",
855+
Applicability::MaybeIncorrect,
856+
);
857+
}
845858
if let Some(ret_sp) = opt_suggest_box_span {
846859
// Get return type span and point to it.
847860
self.suggest_boxing_for_return_impl_trait(

compiler/rustc_middle/src/traits/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,7 @@ pub struct MatchExpressionArmCause<'tcx> {
541541
pub prior_arm_ty: Ty<'tcx>,
542542
pub prior_arm_span: Span,
543543
pub scrut_span: Span,
544+
pub scrut_hir_id: hir::HirId,
544545
pub source: hir::MatchSource,
545546
pub prior_arms: Vec<Span>,
546547
pub opt_suggest_box_span: Option<Span>,

tests/ui/suggestions/issue-81839.stderr

+11-4
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@ error[E0308]: `match` arms have incompatible types
44
LL | / match num {
55
LL | | 1 => {
66
LL | | cx.answer_str("hi");
7-
| | --------------------
8-
| | | |
9-
| | | help: consider removing this semicolon
10-
| | this is found to be of type `()`
7+
| | -------------------- this is found to be of type `()`
118
LL | | }
129
LL | | _ => cx.answer_str("hi"),
1310
| | ^^^^^^^^^^^^^^^^^^^ expected `()`, found future
1411
LL | | }
1512
| |_____- `match` arms have incompatible types
13+
|
14+
help: consider removing this semicolon
15+
|
16+
LL - cx.answer_str("hi");
17+
LL + cx.answer_str("hi")
18+
|
19+
help: consider using a semicolon here, but this will discard any values in the match arms
20+
|
21+
LL | };
22+
| +
1623

1724
error: aborting due to previous error
1825

tests/ui/wf/wf-unsafe-trait-obj-match.stderr

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ LL | | }
1111
|
1212
= note: expected reference `&S`
1313
found reference `&R`
14+
help: consider using a semicolon here, but this will discard any values in the match arms
15+
|
16+
LL | };
17+
| +
1418

1519
error[E0038]: the trait `Trait` cannot be made into an object
1620
--> $DIR/wf-unsafe-trait-obj-match.rs:26:21

0 commit comments

Comments
 (0)