rust-clippy/tests/ui/short_circuit_statement.fixed

18 lines
231 B
Rust

//@run-rustfix
#![warn(clippy::short_circuit_statement)]
#![allow(clippy::nonminimal_bool)]
fn main() {
if f() { g(); }
if !f() { g(); }
if 1 != 2 { g(); }
}
fn f() -> bool {
true
}
fn g() -> bool {
false
}