rust/tests/ui/short_circuit_statement.rs

16 lines
167 B
Rust
Raw Normal View History

2018-07-28 10:34:52 -05:00
#![warn(clippy::short_circuit_statement)]
fn main() {
f() && g();
f() || g();
1 == 2 || g();
}
fn f() -> bool {
true
}
fn g() -> bool {
false
}