summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/needless_bool/simple.stderr
blob: 0ccc9416bcd58d1727c8c6c2cca74fc757ac2e75 (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
error: this if-then-else expression will always return true
  --> $DIR/simple.rs:14:5
   |
LL | /     if x {
LL | |         true
LL | |     } else {
LL | |         true
LL | |     };
   | |_____^
   |
   = note: `-D clippy::needless-bool` implied by `-D warnings`

error: this if-then-else expression will always return false
  --> $DIR/simple.rs:19:5
   |
LL | /     if x {
LL | |         false
LL | |     } else {
LL | |         false
LL | |     };
   | |_____^

error: this if-then-else expression will always return true
  --> $DIR/simple.rs:34:5
   |
LL | /     if x {
LL | |         return true;
LL | |     } else {
LL | |         return true;
LL | |     };
   | |_____^

error: this if-then-else expression will always return false
  --> $DIR/simple.rs:42:5
   |
LL | /     if x {
LL | |         return false;
LL | |     } else {
LL | |         return false;
LL | |     };
   | |_____^

error: aborting due to 4 previous errors