11 lines
187 B
Rust
11 lines
187 B
Rust
![]() |
// 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);
|
||
|
}
|