rust-clippy/tests/run-pass/match_same_arms_const.rs
2019-01-08 21:46:39 +01:00

16 lines
342 B
Rust

#![deny(clippy::match_same_arms)]
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,
_ => panic!(),
}
}
fn main() {}