rust/tests/mir-opt/dataflow-const-prop/boolean_identities.rs

12 lines
219 B
Rust
Raw Normal View History

// skip-filecheck
2023-04-15 12:00:43 -05:00
// unit-test: DataflowConstProp
// EMIT_MIR boolean_identities.test.DataflowConstProp.diff
pub fn test(x: bool, y: bool) -> bool {
(y | true) & (x & false)
}
fn main() {
test(true, false);
}