mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-05 15:19:24 +00:00
7 lines
107 B
Rust
7 lines
107 B
Rust
fn main() {
|
|
let x = -5;
|
|
if x<-1 { //~ ERROR unexpected token: `<-`
|
|
println!("ok");
|
|
}
|
|
}
|