about summary refs log tree commit diff
path: root/tests/ui/match/issue-82392.rs
blob: 4ae08fed93a292ec19ce08d0847117ad84fe5b15 (plain)
1
2
3
4
5
6
7
8
9
10
// https://github.com/rust-lang/rust/issues/82329
//@ compile-flags: -Zunpretty=hir,typed
//@ check-pass
//@ edition:2015

pub fn main() {
    if true {
    } else if let Some(a) = Some(3) {
    }
}