rust-clippy/tests/ui/short_circuit_statement.rs
2019-08-22 07:21:29 +02:00

18 lines
218 B
Rust

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