mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
224 B
Rust
12 lines
224 B
Rust
// 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);
|
|
}
|