rust/tests/mir-opt/dataflow-const-prop/boolean_identities.rs
2023-09-06 15:57:50 +00:00

11 lines
201 B
Rust

// 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);
}