mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-22 03:44:24 +00:00
13 lines
257 B
Rust
13 lines
257 B
Rust
//@ run-pass
|
|
|
|
// Test that both `&&` and `||` actually short-circuit.
|
|
// Formerly, both sides were evaluated unconditionally
|
|
|
|
const TRUE: bool = true || panic!();
|
|
const FALSE: bool = false && panic!();
|
|
|
|
fn main() {
|
|
assert!(TRUE);
|
|
assert!(!FALSE);
|
|
}
|