blob: acc09caa4f7a97fd8d87fba0baea0b5dd1a561a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Regression test for issue #91725.
//
//@ run-pass
//@ compile-flags: -Zmir-opt-level=4
fn main() {
let a = true;
let _ = &a;
let mut b = false;
b |= a;
assert!(b);
}
|