rustc/tests/ui/binop/placement-syntax.rs
2023-08-02 10:33:26 +02:00

7 lines
107 B
Rust

fn main() {
let x = -5;
if x<-1 { //~ ERROR unexpected token: `<-`
println!("ok");
}
}