2018-07-30 04:33:44 -05:00
|
|
|
#![deny(clippy::match_same_arms)]
|
2018-02-09 07:22:50 -06:00
|
|
|
|
2019-02-06 00:45:57 -06:00
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/2427
|
|
|
|
|
2018-02-09 07:22:50 -06: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-09 16:26:16 -06:00
|
|
|
_ => panic!(),
|
2018-02-09 07:22:50 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|