rust-clippy/tests/ui/short_circuit_statement.rs

17 lines
202 B
Rust
Raw Permalink Normal View History

2018-07-28 15:34:52 +00:00
#![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
}