mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-10 05:53:10 +00:00
19 lines
199 B
Rust
19 lines
199 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
|
||
|
}
|