mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
215 B
Rust
16 lines
215 B
Rust
#![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
|
|
}
|