about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/match_same_arms.stderr
blob: 8aa60f835766313de149c2c35d55cdc396e51882 (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
error: these match arms have identical bodies
  --> tests/ui/match_same_arms.rs:12:9
   |
LL |         Abc::A => 0,
   |         ^^^^^^^^^^^
LL |         Abc::B => 1,
LL |         _ => 0,
   |         ^^^^^^ the wildcard arm
   |
   = help: if this is unintentional make the arms return different values
   = note: `-D clippy::match-same-arms` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::match_same_arms)]`
help: otherwise remove the non-wildcard arm
   |
LL -         Abc::A => 0,
   |

error: these match arms have identical bodies
  --> tests/ui/match_same_arms.rs:20:9
   |
LL |         2 => 'b',
   |         ^^^^^^^^
LL |         3 => 'b',
   |         ^^^^^^^^
LL |         _ => 'b',
   |         ^^^^^^^^ the wildcard arm
   |
   = help: if this is unintentional make the arms return different values
help: otherwise remove the non-wildcard arms
   |
LL -         2 => 'b',
LL -         3 => 'b',
LL +         _ => 'b',
   |

error: these match arms have identical bodies
  --> tests/ui/match_same_arms.rs:27:9
   |
LL |         (1, .., 3) => 42,
   |         ^^^^^^^^^^^^^^^^
LL |
LL |         (.., 3) => 42,
   |         ^^^^^^^^^^^^^
   |
   = help: if this is unintentional make the arms return different values
help: otherwise merge the patterns into a single arm
   |
LL ~         (1, .., 3) | (.., 3) => 42,
LL |
LL ~         _ => 0,
   |

error: these match arms have identical bodies
  --> tests/ui/match_same_arms.rs:34:9
   |
LL |         42 => 1,
   |         ^^^^^^^
LL |
LL |         51 => 1,
   |         ^^^^^^^
   |
   = help: if this is unintentional make the arms return different values
help: otherwise merge the patterns into a single arm
   |
LL ~
LL ~         42 | 51 => 1,
   |

error: these match arms have identical bodies
  --> tests/ui/match_same_arms.rs:37:9
   |
LL |         41 => 2,
   |         ^^^^^^^
LL |
LL |         52 => 2,
   |         ^^^^^^^
   |
   = help: if this is unintentional make the arms return different values
help: otherwise merge the patterns into a single arm
   |
LL ~         41 | 52 => 2,
LL |
LL ~         _ => 0,
   |

error: these match arms have identical bodies
  --> tests/ui/match_same_arms.rs:44:9
   |
LL |         1 => 2,
   |         ^^^^^^
LL |
LL |         2 => 2,
   |         ^^^^^^
LL |         3 => 2,
   |         ^^^^^^
   |
   = help: if this is unintentional make the arms return different values
help: otherwise merge the patterns into a single arm
   |
LL ~
LL ~         1 | 2 | 3 => 2,
   |

error: these match arms have identical bodies
  --> tests/ui/match_same_arms.rs:63:17
   |
LL |                 CommandInfo::BuiltIn { name, .. } => name.to_string(),
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL |
LL |                 CommandInfo::External { name, .. } => name.to_string(),
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: if this is unintentional make the arms return different values
help: otherwise merge the patterns into a single arm
   |
LL ~
LL ~                 CommandInfo::BuiltIn { name, .. } | CommandInfo::External { name, .. } => name.to_string(),
   |

error: aborting due to 7 previous errors