2018-01-31 00:09:16 +01:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/question_mark.rs:2:5
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if a.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 08:59:16 +01:00
|
|
|
| |_____^ help: replace it with: `a?;`
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
|
|
|
= note: `-D clippy::question-mark` implied by `-D warnings`
|
2018-01-31 00:09:16 +01:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/question_mark.rs:47:9
|
2018-01-31 00:09:16 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if (self.opt).is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 08:59:16 +01:00
|
|
|
| |_________^ help: replace it with: `(self.opt)?;`
|
2018-01-31 00:09:16 +01:00
|
|
|
|
2018-12-12 09:46:52 +01:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/question_mark.rs:51:9
|
2018-12-12 09:46:52 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None
|
|
|
|
LL | | }
|
2020-03-04 08:59:16 +01:00
|
|
|
| |_________^ help: replace it with: `self.opt?;`
|
2018-12-12 09:46:52 +01:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/question_mark.rs:55:17
|
2018-12-12 09:46:52 +01:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let _ = if self.opt.is_none() {
|
2018-12-12 09:46:52 +01:00
|
|
|
| _________________^
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | | return None;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | self.opt
|
|
|
|
LL | | };
|
2020-03-04 08:59:16 +01:00
|
|
|
| |_________^ help: replace it with: `Some(self.opt?)`
|
|
|
|
|
|
|
|
error: this if-let-else may be rewritten with the `?` operator
|
|
|
|
--> $DIR/question_mark.rs:61:17
|
|
|
|
|
|
|
|
|
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 09:46:52 +01:00
|
|
|
|
2018-12-18 13:55:04 +01:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2020-03-04 08:59:16 +01:00
|
|
|
--> $DIR/question_mark.rs:78:9
|
2018-12-18 13:55:04 +01:00
|
|
|
|
|
2018-12-28 20:19:51 +01:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 08:59:16 +01:00
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
2018-12-18 13:55:04 +01:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2020-03-04 08:59:16 +01:00
|
|
|
--> $DIR/question_mark.rs:86:9
|
2018-12-18 13:55:04 +01:00
|
|
|
|
|
2018-12-28 20:19:51 +01:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 08:59:16 +01:00
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
2018-12-18 13:55:04 +01:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2020-03-04 08:59:16 +01:00
|
|
|
--> $DIR/question_mark.rs:94:9
|
2018-12-18 13:55:04 +01:00
|
|
|
|
|
2018-12-28 20:19:51 +01:00
|
|
|
LL | / if self.opt.is_none() {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | }
|
2020-03-04 08:59:16 +01:00
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
|
|
|
|
|
|
|
error: this if-let-else may be rewritten with the `?` operator
|
|
|
|
--> $DIR/question_mark.rs:101:30
|
|
|
|
|
|
|
|
|
LL | let mut v: &Vec<_> = if let Some(ref v) = self.opt {
|
|
|
|
| ______________________________^
|
|
|
|
LL | | v
|
|
|
|
LL | | } else {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | };
|
|
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?`
|
|
|
|
|
|
|
|
error: this if-let-else may be rewritten with the `?` operator
|
|
|
|
--> $DIR/question_mark.rs:111:21
|
|
|
|
|
|
|
|
|
LL | let mut v = if let Some(v) = self.opt {
|
|
|
|
| _____________________^
|
|
|
|
LL | | v
|
|
|
|
LL | | } else {
|
|
|
|
LL | | return None;
|
|
|
|
LL | | };
|
|
|
|
| |_________^ help: replace it with: `self.opt?`
|
2018-12-18 13:55:04 +01:00
|
|
|
|
2020-03-04 08:59:16 +01:00
|
|
|
error: aborting due to 10 previous errors
|
2018-01-31 00:09:16 +01:00
|
|
|
|