rust-clippy/tests/run-pass/if_same_then_else.rs

14 lines
207 B
Rust
Raw Normal View History

#![deny(if_same_then_else)]
fn main() {}
pub fn foo(a: i32, b: i32) -> Option<&'static str> {
if a == b {
None
} else if a > b {
Some("a pfeil b")
} else {
None
}
}