16 lines
193 B
Rust
16 lines
193 B
Rust
fn main() {
|
|
if true {
|
|
} else if { //~ ERROR missing condition
|
|
} else {
|
|
}
|
|
}
|
|
|
|
fn foo() {
|
|
if true {
|
|
} else if { //~ ERROR missing condition
|
|
}
|
|
bar();
|
|
}
|
|
|
|
fn bar() {}
|