mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
27 lines
208 B
Rust
27 lines
208 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(short_circuit_statement)]
|
|
|
|
fn main() {
|
|
f() && g();
|
|
|
|
|
|
|
|
f() || g();
|
|
|
|
|
|
|
|
1 == 2 || g();
|
|
|
|
|
|
|
|
}
|
|
|
|
fn f() -> bool {
|
|
true
|
|
}
|
|
|
|
fn g() -> bool {
|
|
false
|
|
}
|