6 lines
109 B
Rust
6 lines
109 B
Rust
fn main() {
|
|
let x = -5;
|
|
if x<-1 { //~ ERROR expected `{`, found `<-`
|
|
println!("ok");
|
|
}
|
|
}
|