rust/tests/mir-opt/const_prop/boolean_identities.rs
2023-10-19 15:51:52 +00:00

13 lines
242 B
Rust

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