mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
19 lines
234 B
Rust
19 lines
234 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
|
||
|
}
|