blob: 0902c97af0dd7f271558f987cec14c3cbcb3bfa2 (
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
error: redundant else block
--> tests/ui/redundant_else.rs:10:10
|
LL | } else {
| __________^
LL | |
LL | |
LL | | println!("yet don't pull down your hedge.");
LL | | }
| |_________^
|
= note: `-D clippy::redundant-else` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::redundant_else)]`
help: remove the `else` block and move the contents out
|
LL ~ }
LL +
LL +
LL + println!("yet don't pull down your hedge.");
|
error: redundant else block
--> tests/ui/redundant_else.rs:19:10
|
LL | } else {
| __________^
LL | |
LL | |
LL | | println!("shall rise up with fleas.");
LL | | }
| |_________^
|
help: remove the `else` block and move the contents out
|
LL ~ }
LL +
LL +
LL + println!("shall rise up with fleas.");
|
error: redundant else block
--> tests/ui/redundant_else.rs:30:10
|
LL | } else {
| __________^
LL | |
LL | |
LL | | println!("You may delay, but time will not.");
LL | | }
| |_________^
|
help: remove the `else` block and move the contents out
|
LL ~ }
LL +
LL +
LL + println!("You may delay, but time will not.");
|
error: redundant else block
--> tests/ui/redundant_else.rs:41:6
|
LL | } else {
| ______^
LL | |
LL | |
LL | | println!("A fat kitchen makes a lean will.");
LL | | }
| |_____^
|
help: remove the `else` block and move the contents out
|
LL ~ }
LL +
LL +
LL + println!("A fat kitchen makes a lean will.");
|
error: redundant else block
--> tests/ui/redundant_else.rs:50:10
|
LL | } else {
| __________^
LL | |
LL | |
LL | | 1
LL | | }
| |_________^
|
help: remove the `else` block and move the contents out
|
LL ~ }
LL +
LL +
LL + 1
|
error: redundant else block
--> tests/ui/redundant_else.rs:62:10
|
LL | } else {
| __________^
LL | |
LL | |
LL | | 2
LL | | }
| |_________^
|
help: remove the `else` block and move the contents out
|
LL ~ }
LL +
LL +
LL + 2
|
error: redundant else block
--> tests/ui/redundant_else.rs:73:10
|
LL | } else {
| __________^
LL | |
LL | |
LL | | 1
LL | | }
| |_________^
|
help: remove the `else` block and move the contents out
|
LL ~ }
LL +
LL +
LL + 1
|
error: aborting due to 7 previous errors
|