blob: cb53523b3b04d0d9d63647664ebb347ff9707893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
fn main() {
if true {
} else if { //~ ERROR missing condition
} else {
}
}
fn foo() {
if true {
} else if { //~ ERROR missing condition
}
bar();
}
fn bar() {}
|