rust/tests/ui/question_mark.stderr

64 lines
1.8 KiB
Text
Raw Normal View History

2018-01-31 00:09:16 +01:00
error: this block may be rewritten with the `?` operator
2018-12-10 06:27:19 +01:00
--> $DIR/question_mark.rs:11: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 | | }
2018-10-06 18:18:06 +02:00
| |_____^ help: replace_it_with: `a?;`
|
= 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
2018-12-19 20:46:12 +01:00
--> $DIR/question_mark.rs:56: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 | | }
2018-01-31 00:09:16 +01:00
| |_________^ help: replace_it_with: `(self.opt)?;`
error: this block may be rewritten with the `?` operator
2018-12-19 20:46:12 +01:00
--> $DIR/question_mark.rs:60:9
|
2018-12-27 16:57:55 +01:00
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
2018-12-19 20:46:12 +01:00
--> $DIR/question_mark.rs:64:17
|
2018-12-27 16:57:55 +01:00
LL | let _ = if self.opt.is_none() {
| _________________^
2018-12-27 16:57:55 +01:00
LL | | return None;
LL | | } else {
LL | | self.opt
LL | | };
| |_________^ help: replace_it_with: `Some(self.opt?)`
error: this block may be rewritten with the `?` operator
2018-12-19 20:46:12 +01:00
--> $DIR/question_mark.rs:81: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
2018-12-19 20:46:12 +01:00
--> $DIR/question_mark.rs:89: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
2018-12-19 20:46:12 +01:00
--> $DIR/question_mark.rs:97:9
|
LL | / if self.opt.is_none() {
LL | | return None;
LL | | }
| |_________^ help: replace_it_with: `self.opt.as_ref()?;`
error: aborting due to 7 previous errors
2018-01-31 00:09:16 +01:00