Skip to content

Commit

Permalink
Don't suggest an arm when suggesting a never pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadrieril committed Mar 1, 2024
1 parent 6999acf commit d49229f
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 20 deletions.
14 changes: 11 additions & 3 deletions compiler/rustc_mir_build/src/thir/pattern/check_match.rs
Expand Up @@ -1020,6 +1020,14 @@ fn report_non_exhaustive_match<'p, 'tcx>(

let mut suggestion = None;
let sm = cx.tcx.sess.source_map();
let suggested_arm = if witnesses.len() < 4
&& witnesses.iter().all(|p| p.is_never_pattern())
&& cx.tcx.features().never_patterns
{
pattern
} else {
format!("{pattern} => todo!()")
};
match arms {
[] if sp.eq_ctxt(expr_span) => {
// Get the span for the empty match body `{}`.
Expand All @@ -1030,7 +1038,7 @@ fn report_non_exhaustive_match<'p, 'tcx>(
};
suggestion = Some((
sp.shrink_to_hi().with_hi(expr_span.hi()),
format!(" {{{indentation}{more}{pattern} => todo!(),{indentation}}}",),
format!(" {{{indentation}{more}{suggested_arm},{indentation}}}",),
));
}
[only] => {
Expand All @@ -1056,7 +1064,7 @@ fn report_non_exhaustive_match<'p, 'tcx>(
};
suggestion = Some((
only.span.shrink_to_hi(),
format!("{comma}{pre_indentation}{pattern} => todo!()"),
format!("{comma}{pre_indentation}{suggested_arm}"),
));
}
[.., prev, last] => {
Expand All @@ -1079,7 +1087,7 @@ fn report_non_exhaustive_match<'p, 'tcx>(
if let Some(spacing) = spacing {
suggestion = Some((
last.span.shrink_to_hi(),
format!("{comma}{spacing}{pattern} => todo!()"),
format!("{comma}{spacing}{suggested_arm}"),
));
}
}
Expand Down
8 changes: 8 additions & 0 deletions compiler/rustc_pattern_analysis/src/pat.rs
Expand Up @@ -321,6 +321,14 @@ impl<Cx: TypeCx> WitnessPat<Cx> {
&self.ty
}

pub fn is_never_pattern(&self) -> bool {
match self.ctor() {
Never => true,
Or => self.fields.iter().all(|p| p.is_never_pattern()),
_ => self.fields.iter().any(|p| p.is_never_pattern()),
}
}

pub fn iter_fields(&self) -> impl Iterator<Item = &WitnessPat<Cx>> {
self.fields.iter()
}
Expand Down
30 changes: 15 additions & 15 deletions tests/ui/pattern/usefulness/empty-types.never_pats.stderr
Expand Up @@ -111,7 +111,7 @@ note: `Result<u32, !>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ Ok(_) => {},
LL + Err(!) => todo!()
LL + Err(!)
|

error[E0004]: non-exhaustive patterns: `Ok(1_u32..=u32::MAX)` not covered
Expand Down Expand Up @@ -192,7 +192,7 @@ note: `Result<!, !>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
|
LL ~ match result_never {
LL + Ok(!) | Err(!) => todo!(),
LL + Ok(!) | Err(!),
LL + }
|

Expand All @@ -210,8 +210,8 @@ note: `Result<!, !>` defined here
= note: the matched value is of type `Result<!, !>`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL | Ok(_) => {}, Err(!) => todo!()
| +++++++++++++++++++
LL | Ok(_) => {}, Err(!)
| ++++++++

error: unreachable pattern
--> $DIR/empty-types.rs:140:13
Expand Down Expand Up @@ -240,7 +240,7 @@ note: `Option<Void>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ None => {},
LL + Some(!) => todo!()
LL + Some(!)
|

error[E0004]: non-exhaustive patterns: `Some(!)` not covered
Expand All @@ -258,7 +258,7 @@ note: `Option<Void>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ None => {},
LL + Some(!) => todo!()
LL + Some(!)
|

error: unreachable pattern
Expand Down Expand Up @@ -343,7 +343,7 @@ note: `Result<!, !>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
|
LL ~ match *x {
LL + Ok(!) | Err(!) => todo!(),
LL + Ok(!) | Err(!),
LL ~ }
|

Expand Down Expand Up @@ -385,7 +385,7 @@ LL | match slice_never {
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ [] => {},
LL + &[!, ..] => todo!()
LL + &[!, ..]
|

error[E0004]: non-exhaustive patterns: `&[]`, `&[!]` and `&[!, !]` not covered
Expand Down Expand Up @@ -492,7 +492,7 @@ note: `Option<!>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ &None => {},
LL + &Some(!) => todo!()
LL + &Some(!)
|

error[E0004]: non-exhaustive patterns: `Some(!)` not covered
Expand All @@ -510,7 +510,7 @@ note: `Option<!>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ None => {},
LL + Some(!) => todo!()
LL + Some(!)
|

error[E0004]: non-exhaustive patterns: `Err(!)` not covered
Expand All @@ -528,7 +528,7 @@ note: `Result<!, !>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ Ok(_) => {},
LL + Err(!) => todo!()
LL + Err(!)
|

error[E0004]: non-exhaustive patterns: `Err(!)` not covered
Expand All @@ -546,7 +546,7 @@ note: `Result<!, !>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ Ok(_a) => {},
LL + Err(!) => todo!()
LL + Err(!)
|

error[E0004]: non-exhaustive patterns: type `(u32, !)` is non-empty
Expand Down Expand Up @@ -599,7 +599,7 @@ LL | match ref_never {
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ &_a if false => {},
LL + &! => todo!()
LL + &!
|

error[E0004]: non-exhaustive patterns: `Ok(!)` not covered
Expand All @@ -617,7 +617,7 @@ note: `Result<!, !>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ Err(_) => {},
LL + Ok(!) => todo!()
LL + Ok(!)
|

error[E0004]: non-exhaustive patterns: `Some(!)` not covered
Expand All @@ -635,7 +635,7 @@ note: `Option<Result<!, !>>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ None => {},
LL + Some(!) => todo!()
LL + Some(!)
|

error: aborting due to 49 previous errors; 1 warning emitted
Expand Down
4 changes: 2 additions & 2 deletions tests/ui/rfcs/rfc-0000-never_patterns/check.stderr
Expand Up @@ -46,7 +46,7 @@ note: `Option<Void>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ None => {},
LL + Some(!) => todo!()
LL + Some(!)
|

error[E0004]: non-exhaustive patterns: `Some(!)` not covered
Expand All @@ -64,7 +64,7 @@ note: `Option<Void>` defined here
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ None => {},
LL + Some(!) => todo!()
LL + Some(!)
|

error: aborting due to 6 previous errors
Expand Down

0 comments on commit d49229f

Please sign in to comment.