summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/if_same_then_else2.stderr
blob: cac788f859d1e0817dcf231b4fe0ead07896054f (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
error: this `if` has identical blocks
  --> $DIR/if_same_then_else2.rs:14:13
   |
LL |       if true {
   |  _____________^
LL | |         for _ in &[42] {
LL | |             let foo: &Option<_> = &Some::<u8>(42);
LL | |             if foo.is_some() {
...  |
LL | |         }
LL | |     } else {
   | |_____^
   |
   = note: `-D clippy::if-same-then-else` implied by `-D warnings`
note: same as this
  --> $DIR/if_same_then_else2.rs:23:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         for _ in &[42] {
LL | |             let bar: &Option<_> = &Some::<u8>(42);
...  |
LL | |         }
LL | |     }
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else2.rs:35:13
   |
LL |       if true {
   |  _____________^
LL | |         if let Some(a) = Some(42) {}
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else2.rs:37:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         if let Some(a) = Some(42) {}
LL | |     }
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else2.rs:42:13
   |
LL |       if true {
   |  _____________^
LL | |         if let (1, .., 3) = (1, 2, 3) {}
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else2.rs:44:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         if let (1, .., 3) = (1, 2, 3) {}
LL | |     }
   | |_____^

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

error: this `if` has identical blocks
  --> $DIR/if_same_then_else2.rs:99:13
   |
LL |       if true {
   |  _____________^
LL | |         Ok("foo")?;
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else2.rs:101:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         Ok("foo")?;
LL | |     }
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else2.rs:123:20
   |
LL |       } else if true {
   |  ____________________^
LL | |         let foo = "";
LL | |         return Ok(&foo[0..]);
LL | |     } else {
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else2.rs:126:12
   |
LL |       } else {
   |  ____________^
LL | |         let foo = "";
LL | |         return Ok(&foo[0..]);
LL | |     }
   | |_____^

error: aborting due to 6 previous errors