mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 19:23:50 +00:00
28 lines
208 B
Rust
28 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
|
|
}
|