rust/tests/ui/crashes/match_same_arms_const.rs

21 lines
422 B
Rust
Raw Normal View History

// run-pass
2018-07-30 17:33:44 +08:00
#![deny(clippy::match_same_arms)]
2018-02-09 21:22:50 +08:00
/// Test for https://github.com/rust-lang/rust-clippy/issues/2427
2018-02-09 21:22:50 +08:00
const PRICE_OF_SWEETS: u32 = 5;
const PRICE_OF_KINDNESS: u32 = 0;
const PRICE_OF_DRINKS: u32 = 5;
pub fn price(thing: &str) -> u32 {
match thing {
"rolo" => PRICE_OF_SWEETS,
"advice" => PRICE_OF_KINDNESS,
"juice" => PRICE_OF_DRINKS,
2018-12-10 06:26:16 +08:00
_ => panic!(),
2018-02-09 21:22:50 +08:00
}
}
fn main() {}