]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/issue-82392.rs
Merge commit '97e504549371d7640cf011d266e3c17394fdddac' into sync_cg_clif-2021-12-20
[rust.git] / src / test / ui / match / issue-82392.rs
1 // https://github.com/rust-lang/rust/issues/82329
2 // compile-flags: -Zunpretty=hir,typed
3 // check-pass
4
5 pub fn main() {
6     if true {
7     } else if let Some(a) = Some(3) {
8     }
9 }