blob: cb53523b3b04d0d9d63647664ebb347ff9707893 [file] [log] [blame]
fn main() {
if true {
} else if { //~ ERROR missing condition
} else {
}
}
fn foo() {
if true {
} else if { //~ ERROR missing condition
}
bar();
}
fn bar() {}