mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
simplify if let Some(_) = x to if x.is_some() (clippy::redundant_pattern_matching)
This commit is contained in:
+2
-2
@@ -121,7 +121,7 @@ pub(super) fn try_report_anon_anon_conflict(&self) -> Option<ErrorReported> {
|
||||
|
||||
(Some(ret_span), _) => {
|
||||
let sup_future = self.future_return_type(scope_def_id_sup);
|
||||
let (return_type, action) = if let Some(_) = sup_future {
|
||||
let (return_type, action) = if sup_future.is_some() {
|
||||
("returned future", "held across an await point")
|
||||
} else {
|
||||
("return type", "returned")
|
||||
@@ -140,7 +140,7 @@ pub(super) fn try_report_anon_anon_conflict(&self) -> Option<ErrorReported> {
|
||||
}
|
||||
(_, Some(ret_span)) => {
|
||||
let sub_future = self.future_return_type(scope_def_id_sub);
|
||||
let (return_type, action) = if let Some(_) = sub_future {
|
||||
let (return_type, action) = if sub_future.is_some() {
|
||||
("returned future", "held across an await point")
|
||||
} else {
|
||||
("return type", "returned")
|
||||
|
||||
Reference in New Issue
Block a user