blob: a2fd9264b15308c1871a45fb63887879243750e6 [file] [log] [blame]
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() {}