summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/match_same_arms.stderr
blob: 7752a8a6ff2b4094a3089d3295d77b4d2a44f597 (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
error: this `match` has identical arm bodies
  --> $DIR/match_same_arms.rs:13:14
   |
LL |         _ => 0, //~ ERROR match arms have same body
   |              ^
   |
   = note: `-D clippy::match-same-arms` implied by `-D warnings`
note: same as this
  --> $DIR/match_same_arms.rs:11:19
   |
LL |         Abc::A => 0,
   |                   ^
note: `Abc::A` has the same arm body as the `_` wildcard, consider removing it
  --> $DIR/match_same_arms.rs:11:19
   |
LL |         Abc::A => 0,
   |                   ^

error: this `match` has identical arm bodies
  --> $DIR/match_same_arms.rs:18:20
   |
LL |         (.., 3) => 42, //~ ERROR match arms have same body
   |                    ^^
   |
note: same as this
  --> $DIR/match_same_arms.rs:17:23
   |
LL |         (1, .., 3) => 42,
   |                       ^^
help: consider refactoring into `(1, .., 3) | (.., 3)`
  --> $DIR/match_same_arms.rs:17:9
   |
LL |         (1, .., 3) => 42,
   |         ^^^^^^^^^^
   = help: ...or consider changing the match arm bodies

error: this `match` has identical arm bodies
  --> $DIR/match_same_arms.rs:24:15
   |
LL |         51 => 1, //~ ERROR match arms have same body
   |               ^
   |
note: same as this
  --> $DIR/match_same_arms.rs:23:15
   |
LL |         42 => 1,
   |               ^
help: consider refactoring into `42 | 51`
  --> $DIR/match_same_arms.rs:23:9
   |
LL |         42 => 1,
   |         ^^
   = help: ...or consider changing the match arm bodies

error: this `match` has identical arm bodies
  --> $DIR/match_same_arms.rs:26:15
   |
LL |         52 => 2, //~ ERROR match arms have same body
   |               ^
   |
note: same as this
  --> $DIR/match_same_arms.rs:25:15
   |
LL |         41 => 2,
   |               ^
help: consider refactoring into `41 | 52`
  --> $DIR/match_same_arms.rs:25:9
   |
LL |         41 => 2,
   |         ^^
   = help: ...or consider changing the match arm bodies

error: this `match` has identical arm bodies
  --> $DIR/match_same_arms.rs:32:14
   |
LL |         2 => 2, //~ ERROR 2nd matched arms have same body
   |              ^
   |
note: same as this
  --> $DIR/match_same_arms.rs:31:14
   |
LL |         1 => 2,
   |              ^
help: consider refactoring into `1 | 2`
  --> $DIR/match_same_arms.rs:31:9
   |
LL |         1 => 2,
   |         ^
   = help: ...or consider changing the match arm bodies

error: this `match` has identical arm bodies
  --> $DIR/match_same_arms.rs:33:14
   |
LL |         3 => 2, //~ ERROR 3rd matched arms have same body
   |              ^
   |
note: same as this
  --> $DIR/match_same_arms.rs:31:14
   |
LL |         1 => 2,
   |              ^
help: consider refactoring into `1 | 3`
  --> $DIR/match_same_arms.rs:31:9
   |
LL |         1 => 2,
   |         ^
   = help: ...or consider changing the match arm bodies

error: this `match` has identical arm bodies
  --> $DIR/match_same_arms.rs:50:55
   |
LL |                 CommandInfo::External { name, .. } => name.to_string(),
   |                                                       ^^^^^^^^^^^^^^^^
   |
note: same as this
  --> $DIR/match_same_arms.rs:49:54
   |
LL |                 CommandInfo::BuiltIn { name, .. } => name.to_string(),
   |                                                      ^^^^^^^^^^^^^^^^
help: consider refactoring into `CommandInfo::BuiltIn { name, .. } | CommandInfo::External { name, .. }`
  --> $DIR/match_same_arms.rs:49:17
   |
LL |                 CommandInfo::BuiltIn { name, .. } => name.to_string(),
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = help: ...or consider changing the match arm bodies

error: aborting due to 7 previous errors