]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/not_equal_false.rs
Auto merge of #80746 - ehuss:update-cargo, r=ehuss
[rust.git] / src / test / mir-opt / not_equal_false.rs
1 // EMIT_MIR not_equal_false.opt.InstCombine.diff
2
3 fn opt(x: Option<()>) -> bool {
4     matches!(x, None) || matches!(x, Some(_))
5 }
6
7 fn main() {
8     opt(None);
9 }