summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/match_same_arms.stderr
blob: 4a4772da143a22613b21b513b25b8f05e5c65d52 (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
error: this match arm has an identical body to the `_` wildcard arm
  --> tests/ui/match_same_arms.rs:12:9
   |
LL |         Abc::A => 0,
   |         ^^^^^^^^^^^^^ help: try removing the arm
   |
   = help: or try changing either arm body
note: `_` wildcard arm here
  --> tests/ui/match_same_arms.rs:14:9
   |
LL |         _ => 0,
   |         ^^^^^^
   = note: `-D clippy::match-same-arms` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::match_same_arms)]`

error: this match arm has an identical body to another arm
  --> tests/ui/match_same_arms.rs:18:9
   |
LL |         (1, .., 3) => 42,
   |         ^^^^^^^^^^^^^^^^
   |
   = help: try changing either arm body
help: or try merging the arm patterns and removing the obsolete arm
   |
LL ~         (1, .., 3) | (.., 3) => 42,
LL ~         _ => 0,
   |

error: this match arm has an identical body to another arm
  --> tests/ui/match_same_arms.rs:25:9
   |
LL |         51 => 1,
   |         ^^^^^^^
   |
   = help: try changing either arm body
help: or try merging the arm patterns and removing the obsolete arm
   |
LL -         42 => 1,
LL -         51 => 1,
LL +         51 | 42 => 1,
   |

error: this match arm has an identical body to another arm
  --> tests/ui/match_same_arms.rs:26:9
   |
LL |         41 => 2,
   |         ^^^^^^^
   |
   = help: try changing either arm body
help: or try merging the arm patterns and removing the obsolete arm
   |
LL ~         41 | 52 => 2,
LL ~         _ => 0,
   |

error: this match arm has an identical body to another arm
  --> tests/ui/match_same_arms.rs:33:9
   |
LL |         2 => 2,
   |         ^^^^^^
   |
   = help: try changing either arm body
help: or try merging the arm patterns and removing the obsolete arm
   |
LL -         1 => 2,
LL -         2 => 2,
LL +         2 | 1 => 2,
   |

error: this match arm has an identical body to another arm
  --> tests/ui/match_same_arms.rs:35:9
   |
LL |         3 => 2,
   |         ^^^^^^
   |
   = help: try changing either arm body
help: or try merging the arm patterns and removing the obsolete arm
   |
LL ~         2 => 2,
LL |
LL ~         3 | 1 => 2,
   |

error: this match arm has an identical body to another arm
  --> tests/ui/match_same_arms.rs:33:9
   |
LL |         2 => 2,
   |         ^^^^^^
   |
   = help: try changing either arm body
help: or try merging the arm patterns and removing the obsolete arm
   |
LL ~         2 | 3 => 2,
LL |
LL ~
   |

error: this match arm has an identical body to another arm
  --> tests/ui/match_same_arms.rs:52:17
   |
LL |                 CommandInfo::External { name, .. } => name.to_string(),
   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: try changing either arm body
help: or try merging the arm patterns and removing the obsolete arm
   |
LL -                 CommandInfo::BuiltIn { name, .. } => name.to_string(),
LL -                 CommandInfo::External { name, .. } => name.to_string(),
LL +                 CommandInfo::External { name, .. } | CommandInfo::BuiltIn { name, .. } => name.to_string(),
   |

error: aborting due to 8 previous errors