2018-01-30 23:09:16 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/question_mark.rs:2: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 | | }
|
2018-10-06 16:18:06 +00:00
|
|
|
| |_____^ help: replace_it_with: `a?;`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::question-mark` implied by `-D warnings`
|
2018-01-30 23:09:16 +00:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/question_mark.rs:47: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 | | }
|
2018-01-30 23:09: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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/question_mark.rs:51: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 | | }
|
2018-12-12 08:46:52 +00:00
|
|
|
| |_________^ help: replace_it_with: `self.opt?;`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/question_mark.rs:55: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 | | };
|
2018-12-12 08:46:52 +00:00
|
|
|
| |_________^ help: replace_it_with: `Some(self.opt?)`
|
|
|
|
|
2018-12-18 12:55:04 +00:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/question_mark.rs:72: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 | | }
|
2018-12-18 12:55:04 +00:00
|
|
|
| |_________^ help: replace_it_with: `self.opt.as_ref()?;`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/question_mark.rs:80: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 | | }
|
2018-12-18 12:55:04 +00:00
|
|
|
| |_________^ help: replace_it_with: `self.opt.as_ref()?;`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/question_mark.rs:88: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 | | }
|
2018-12-18 12:55:04 +00:00
|
|
|
| |_________^ help: replace_it_with: `self.opt.as_ref()?;`
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2018-01-30 23:09:16 +00:00
|
|
|
|