rust/src/test/ui/placement-syntax.rs
2019-05-24 01:27:32 +01:00

6 lines
109 B
Rust

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