about summary refs log tree commit diff
path: root/src/test/ui/parser/issues/issue-13483.rs
blob: a2fd9264b15308c1871a45fb63887879243750e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fn main() {
    if true {
    } else if { //~ ERROR missing condition
    //~^ ERROR mismatched types
    } else {
    }
}

fn foo() {
    if true {
    } else if { //~ ERROR missing condition
    //~^ ERROR mismatched types
    }
    bar();
}

fn bar() {}