97 lines
2.8 KiB
Plaintext
97 lines
2.8 KiB
Plaintext
error: this block may be rewritten with the `?` operator
|
|
--> $DIR/question_mark.rs:2:5
|
|
|
|
|
LL | / if a.is_none() {
|
|
LL | | return None;
|
|
LL | | }
|
|
| |_____^ help: replace it with: `a?;`
|
|
|
|
|
= note: `-D clippy::question-mark` implied by `-D warnings`
|
|
|
|
error: this block may be rewritten with the `?` operator
|
|
--> $DIR/question_mark.rs:47:9
|
|
|
|
|
LL | / if (self.opt).is_none() {
|
|
LL | | return None;
|
|
LL | | }
|
|
| |_________^ help: replace it with: `(self.opt)?;`
|
|
|
|
error: this block may be rewritten with the `?` operator
|
|
--> $DIR/question_mark.rs:51:9
|
|
|
|
|
LL | / if self.opt.is_none() {
|
|
LL | | return None
|
|
LL | | }
|
|
| |_________^ help: replace it with: `self.opt?;`
|
|
|
|
error: this block may be rewritten with the `?` operator
|
|
--> $DIR/question_mark.rs:55:17
|
|
|
|
|
LL | let _ = if self.opt.is_none() {
|
|
| _________________^
|
|
LL | | return None;
|
|
LL | | } else {
|
|
LL | | self.opt
|
|
LL | | };
|
|
| |_________^ 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?`
|
|
|
|
error: this block may be rewritten with the `?` operator
|
|
--> $DIR/question_mark.rs:78:9
|
|
|
|
|
LL | / if self.opt.is_none() {
|
|
LL | | return None;
|
|
LL | | }
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
|
|
|
error: this block may be rewritten with the `?` operator
|
|
--> $DIR/question_mark.rs:86:9
|
|
|
|
|
LL | / if self.opt.is_none() {
|
|
LL | | return None;
|
|
LL | | }
|
|
| |_________^ help: replace it with: `self.opt.as_ref()?;`
|
|
|
|
error: this block may be rewritten with the `?` operator
|
|
--> $DIR/question_mark.rs:94:9
|
|
|
|
|
LL | / if self.opt.is_none() {
|
|
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: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?`
|
|
|
|
error: aborting due to 10 previous errors
|
|
|