]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/issue-82392.rs
Rollup merge of #93413 - lsimons:patch-1, r=Dylan-DPC
[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 }