mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
28 lines
542 B
Rust
28 lines
542 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(clippy)]
|
||
|
|
||
|
#![deny(short_circuit_statement)]
|
||
|
|
||
|
fn main() {
|
||
|
f() && g();
|
||
|
//~^ ERROR boolean short circuit operator
|
||
|
//~| HELP replace it with
|
||
|
//~| SUGGESTION if f() { g(); }
|
||
|
f() || g();
|
||
|
//~^ ERROR boolean short circuit operator
|
||
|
//~| HELP replace it with
|
||
|
//~| SUGGESTION if !f() { g(); }
|
||
|
1 == 2 || g();
|
||
|
//~^ ERROR boolean short circuit operator
|
||
|
//~| HELP replace it with
|
||
|
//~| SUGGESTION if !(1 == 2) { g(); }
|
||
|
}
|
||
|
|
||
|
fn f() -> bool {
|
||
|
true
|
||
|
}
|
||
|
|
||
|
fn g() -> bool {
|
||
|
false
|
||
|
}
|