summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/question_mark.stderr
blob: 8d782b71dd6a47ae8368b0d8f8c7ba89b13b34b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
error: this block may be rewritten with the `?` operator
  --> $DIR/question_mark.rs:6: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: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: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:59: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:65: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:82: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:90: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:98: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:105:26
   |
LL |           let 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:115:17
   |
LL |           let v = if let Some(v) = self.opt {
   |  _________________^
LL | |             v
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:130:5
   |
LL | /     if f().is_none() {
LL | |         return None;
LL | |     }
   | |_____^ help: replace it with: `f()?;`

error: this if-let-else may be rewritten with the `?` operator
  --> $DIR/question_mark.rs:142:13
   |
LL |     let _ = if let Ok(x) = x { x } else { return x };
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace it with: `x?`

error: this block may be rewritten with the `?` operator
  --> $DIR/question_mark.rs:144:5
   |
LL | /     if x.is_err() {
LL | |         return x;
LL | |     }
   | |_____^ help: replace it with: `x?;`

error: aborting due to 13 previous errors