rust/tests/ui/question_mark.stderr

40 lines
1.1 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-10 06:27:19 +01:00
11 | / if a.is_none() {
12 | | return None;
13 | | }
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
--> $DIR/question_mark.rs:47:9
2018-01-31 00:09:16 +01:00
|
47 | / if (self.opt).is_none() {
48 | | return None;
49 | | }
2018-01-31 00:09:16 +01:00
| |_________^ help: replace_it_with: `(self.opt)?;`
error: this block may be rewritten with the `?` operator
--> $DIR/question_mark.rs:51:9
|
51 | / if self.opt.is_none() {
52 | | return None
53 | | }
| |_________^ help: replace_it_with: `self.opt?;`
error: this block may be rewritten with the `?` operator
--> $DIR/question_mark.rs:55:17
|
55 | let _ = if self.opt.is_none() {
| _________________^
56 | | return None;
57 | | } else {
58 | | self.opt
59 | | };
| |_________^ help: replace_it_with: `Some(self.opt?)`
error: aborting due to 4 previous errors
2018-01-31 00:09:16 +01:00