summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/if_same_then_else.stderr
blob: 2cdf442486a306334ea93c052ac421fe84a6b936 (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
error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:23:13
   |
LL |       if true {
   |  _____________^
LL | |         Foo { bar: 42 };
LL | |         0..10;
LL | |         ..;
...  |
LL | |         foo();
LL | |     } else {
   | |_____^
   |
   = note: `-D clippy::if-same-then-else` implied by `-D warnings`
note: same as this
  --> $DIR/if_same_then_else.rs:31:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         Foo { bar: 42 };
LL | |         0..10;
...  |
LL | |         foo();
LL | |     }
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:67:21
   |
LL |       let _ = if true {
   |  _____________________^
LL | |         0.0
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:69:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         0.0
LL | |     };
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:74:21
   |
LL |       let _ = if true {
   |  _____________________^
LL | |         -0.0
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:76:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         -0.0
LL | |     };
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:90:21
   |
LL |       let _ = if true {
   |  _____________________^
LL | |         42
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:92:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         42
LL | |     };
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:97:13
   |
LL |       if true {
   |  _____________^
LL | |         let bar = if true { 42 } else { 43 };
LL | |
LL | |         while foo() {
...  |
LL | |         bar + 1;
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:104:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         let bar = if true { 42 } else { 43 };
LL | |
...  |
LL | |         bar + 1;
LL | |     }
   | |_____^

error: aborting due to 5 previous errors