]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/issue-82392.rs
Merge commit '39683d8eb7a32a74bea96ecbf1e87675d3338506' into sync_cg_gcc-2022-03-26
[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 }