1
Fork 0
rust/src/test/mir-opt/const_prop/boolean_identities.rs

11 lines
187 B
Rust
Raw Normal View History

// compile-flags: -O -Zmir-opt-level=3
// EMIT_MIR rustc.test.ConstProp.diff
pub fn test(x: bool, y: bool) -> bool {
(y | true) & (x & false)
}
fn main() {
test(true, false);
}