rust/tests/ui/mir/issue-78496.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
263 B
Rust
Raw Normal View History

2020-12-09 20:56:27 -06:00
//@ run-pass
//@ compile-flags: -Z mir-opt-level=3 -C opt-level=0
2020-12-09 20:56:27 -06:00
2020-12-09 22:11:32 -06:00
// example from #78496
2020-12-09 20:56:27 -06:00
pub enum E<'a> {
Empty,
Some(&'a E<'a>),
}
fn f(e: &E) -> u32 {
if let E::Some(E::Some(_)) = e { 1 } else { 2 }
}
fn main() {
assert_eq!(f(&E::Empty), 2);
}