2018-01-30 23:09:16 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:7:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / if a.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 07:59:16 +00:00
|
|
|
| |_____^ help: replace it with: `a?;`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::question-mark` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::question_mark)]`
|
2018-01-30 23:09:16 +00:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:52:9
|
2018-01-30 23:09:16 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / if (self.opt).is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 07:59:16 +00:00
|
|
|
| |_________^ help: replace it with: `(self.opt)?;`
|
2018-01-30 23:09:16 +00:00
|
|
|
|
2018-12-12 08:46:52 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:56:9
|
2018-12-12 08:46:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None
|
|
|
|
LL | | }
|
2020-03-04 07:59:16 +00:00
|
|
|
| |_________^ help: replace it with: `self.opt?;`
|
2018-12-12 08:46:52 +00:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:60:17
|
2018-12-12 08:46:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = if self.opt.is_none() {
|
2018-12-12 08:46:52 +00:00
|
|
|
| _________________^
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | return None;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | self.opt
|
|
|
|
LL | | };
|
2020-03-04 07:59:16 +00:00
|
|
|
| |_________^ help: replace it with: `Some(self.opt?)`
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:66:17
|
2020-03-04 07:59:16 +00:00
|
|
|
|
|
|
|
|
LL | let _ = if let Some(x) = self.opt {
|
|
|
|
| _________________^
|
|
|
|
LL | | x
|
|
|
|
LL | | } else {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | };
|
|
|
|
| |_________^ help: replace it with: `self.opt?`
|
2018-12-12 08:46:52 +00:00
|
|
|
|
2018-12-18 12:55:04 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:83:9
|
2018-12-18 12:55:04 +00:00
|
|
|
|
|
2018-12-28 19:19:51 +00:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 07:59:16 +00:00
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
2018-12-18 12:55:04 +00:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:91:9
|
2018-12-18 12:55:04 +00:00
|
|
|
|
|
2018-12-28 19:19:51 +00:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 07:59:16 +00:00
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
2018-12-18 12:55:04 +00:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:99:9
|
2018-12-18 12:55:04 +00:00
|
|
|
|
|
2018-12-28 19:19:51 +00:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 07:59:16 +00:00
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:106:26
|
2020-03-04 07:59:16 +00:00
|
|
|
|
|
2020-03-04 08:21:07 +00:00
|
|
|
LL | let v: &Vec<_> = if let Some(ref v) = self.opt {
|
|
|
|
| __________________________^
|
2020-03-04 07:59:16 +00:00
|
|
|
LL | | v
|
|
|
|
LL | | } else {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | };
|
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?`
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:116:17
|
2020-03-04 07:59:16 +00:00
|
|
|
|
|
2020-03-04 08:21:07 +00:00
|
|
|
LL | let v = if let Some(v) = self.opt {
|
|
|
|
| _________________^
|
2020-03-04 07:59:16 +00:00
|
|
|
LL | | v
|
|
|
|
LL | | } else {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | };
|
|
|
|
| |_________^ help: replace it with: `self.opt?`
|
2018-12-18 12:55:04 +00:00
|
|
|
|
2020-04-17 04:09:02 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:131:5
|
2020-04-17 04:09:02 +00:00
|
|
|
|
|
|
|
|
LL | / if f().is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: replace it with: `f()?;`
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:143:13
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _ = if let Ok(x) = x { x } else { return x };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `x?`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:145:5
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | / if x.is_err() {
|
|
|
|
LL | | return x;
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: replace it with: `x?;`
|
|
|
|
|
2022-07-18 07:39:37 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:213:5
|
2022-07-18 07:39:37 +00:00
|
|
|
|
|
|
|
|
LL | / if let Err(err) = func_returning_result() {
|
|
|
|
LL | | return Err(err);
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: replace it with: `func_returning_result()?;`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:220:5
|
2022-07-18 07:39:37 +00:00
|
|
|
|
|
|
|
|
LL | / if let Err(err) = func_returning_result() {
|
|
|
|
LL | | return Err(err);
|
|
|
|
LL | | }
|
|
|
|
| |_____^ help: replace it with: `func_returning_result()?;`
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/question_mark.rs:297:13
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
LL | / if a.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | // do lint here, the outer `try` is not relevant here
|
|
|
|
LL | | // https://github.com/rust-lang/rust-clippy/pull/11001#issuecomment-1610636867
|
|
|
|
LL | | }
|
|
|
|
| |_____________^ help: replace it with: `a?;`
|
|
|
|
|
|
|
|
error: aborting due to 16 previous errors
|
2018-01-30 23:09:16 +00:00
|
|
|
|