2018-01-30 17:09:16 -06:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/question_mark.rs:11:5
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-09 23:27:19 -06:00
|
|
|
11 | / if a.is_none() {
|
|
|
|
12 | | return None;
|
|
|
|
13 | | }
|
2018-10-06 11:18:06 -05:00
|
|
|
| |_____^ help: replace_it_with: `a?;`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::question-mark` implied by `-D warnings`
|
2018-01-30 17:09:16 -06:00
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2018-12-19 13:46:12 -06:00
|
|
|
--> $DIR/question_mark.rs:56:9
|
2018-01-30 17:09:16 -06:00
|
|
|
|
|
2018-12-19 13:46:12 -06:00
|
|
|
56 | / if (self.opt).is_none() {
|
|
|
|
57 | | return None;
|
|
|
|
58 | | }
|
2018-01-30 17:09:16 -06:00
|
|
|
| |_________^ help: replace_it_with: `(self.opt)?;`
|
|
|
|
|
2018-12-12 02:46:52 -06:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2018-12-19 13:46:12 -06:00
|
|
|
--> $DIR/question_mark.rs:60:9
|
2018-12-12 02:46:52 -06:00
|
|
|
|
|
2018-12-19 13:46:12 -06:00
|
|
|
60 | / if self.opt.is_none() {
|
|
|
|
61 | | return None
|
|
|
|
62 | | }
|
2018-12-12 02:46:52 -06:00
|
|
|
| |_________^ help: replace_it_with: `self.opt?;`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2018-12-19 13:46:12 -06:00
|
|
|
--> $DIR/question_mark.rs:64:17
|
2018-12-12 02:46:52 -06:00
|
|
|
|
|
2018-12-19 13:46:12 -06:00
|
|
|
64 | let _ = if self.opt.is_none() {
|
2018-12-12 02:46:52 -06:00
|
|
|
| _________________^
|
2018-12-19 13:46:12 -06:00
|
|
|
65 | | return None;
|
|
|
|
66 | | } else {
|
|
|
|
67 | | self.opt
|
|
|
|
68 | | };
|
2018-12-12 02:46:52 -06:00
|
|
|
| |_________^ help: replace_it_with: `Some(self.opt?)`
|
|
|
|
|
2018-12-18 06:55:04 -06:00
|
|
|
error: this block may be rewritten with the `?` operator
|
2018-12-19 13:46:12 -06:00
|
|
|
--> $DIR/question_mark.rs:81:9
|
2018-12-18 06:55:04 -06:00
|
|
|
|
|
2018-12-19 13:46:12 -06:00
|
|
|
81 | / if self.opt.is_none() {
|
|
|
|
82 | | return None;
|
|
|
|
83 | | }
|
2018-12-18 06:55:04 -06:00
|
|
|
| |_________^ help: replace_it_with: `self.opt.as_ref()?;`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2018-12-19 13:46:12 -06:00
|
|
|
--> $DIR/question_mark.rs:89:9
|
2018-12-18 06:55:04 -06:00
|
|
|
|
|
2018-12-19 13:46:12 -06:00
|
|
|
89 | / if self.opt.is_none() {
|
|
|
|
90 | | return None;
|
|
|
|
91 | | }
|
2018-12-18 06:55:04 -06:00
|
|
|
| |_________^ help: replace_it_with: `self.opt.as_ref()?;`
|
|
|
|
|
|
|
|
error: this block may be rewritten with the `?` operator
|
2018-12-19 13:46:12 -06:00
|
|
|
--> $DIR/question_mark.rs:97:9
|
2018-12-18 06:55:04 -06:00
|
|
|
|
|
2018-12-19 13:46:12 -06:00
|
|
|
97 | / if self.opt.is_none() {
|
|
|
|
98 | | return None;
|
|
|
|
99 | | }
|
2018-12-18 06:55:04 -06:00
|
|
|
| |_________^ help: replace_it_with: `self.opt.as_ref()?;`
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2018-01-30 17:09:16 -06:00
|
|
|
|