2019-07-02 06:08:28 +00:00
|
|
|
#![warn(clippy::match_same_arms)]
|
2016-01-30 17:03:53 +00:00
|
|
|
|
2016-10-08 13:16:00 +00:00
|
|
|
pub enum Abc {
|
|
|
|
A,
|
|
|
|
B,
|
|
|
|
C,
|
|
|
|
}
|
|
|
|
|
2019-02-10 09:19:24 +00:00
|
|
|
fn match_same_arms() {
|
2016-10-08 13:16:00 +00:00
|
|
|
let _ = match Abc::A {
|
|
|
|
Abc::A => 0,
|
|
|
|
Abc::B => 1,
|
2018-02-08 19:26:50 +00:00
|
|
|
_ => 0, //~ ERROR match arms have same body
|
2016-10-08 13:16:00 +00:00
|
|
|
};
|
|
|
|
|
2016-05-27 12:24:28 +00:00
|
|
|
match (1, 2, 3) {
|
|
|
|
(1, .., 3) => 42,
|
2018-02-08 19:26:50 +00:00
|
|
|
(.., 3) => 42, //~ ERROR match arms have same body
|
2016-05-27 12:24:28 +00:00
|
|
|
_ => 0,
|
|
|
|
};
|
|
|
|
|
2019-05-16 12:13:57 +00:00
|
|
|
let _ = match 42 {
|
|
|
|
42 => 1,
|
|
|
|
51 => 1, //~ ERROR match arms have same body
|
|
|
|
41 => 2,
|
|
|
|
52 => 2, //~ ERROR match arms have same body
|
|
|
|
_ => 0,
|
|
|
|
};
|
2019-05-20 08:22:13 +00:00
|
|
|
|
|
|
|
let _ = match 42 {
|
|
|
|
1 => 2,
|
2019-05-20 16:25:13 +00:00
|
|
|
2 => 2, //~ ERROR 2nd matched arms have same body
|
2019-05-20 08:22:13 +00:00
|
|
|
3 => 2, //~ ERROR 3rd matched arms have same body
|
|
|
|
4 => 3,
|
|
|
|
_ => 0,
|
|
|
|
};
|
2016-01-30 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2019-07-02 06:08:28 +00:00
|
|
|
mod issue4244 {
|
|
|
|
#[derive(PartialEq, PartialOrd, Eq, Ord)]
|
|
|
|
pub enum CommandInfo {
|
|
|
|
BuiltIn { name: String, about: Option<String> },
|
|
|
|
External { name: String, path: std::path::PathBuf },
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CommandInfo {
|
|
|
|
pub fn name(&self) -> String {
|
|
|
|
match self {
|
|
|
|
CommandInfo::BuiltIn { name, .. } => name.to_string(),
|
|
|
|
CommandInfo::External { name, .. } => name.to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 18:16:49 +00:00
|
|
|
fn main() {}
|