Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
binop
/
placement-syntax.rs
blob: 4df96dedbd45be137032e094308cf3c5334ac741 [
file
]
fn
main
()
{
let
x
=
-
5
;
if
x
<-
1
{
//~ ERROR unexpected token: `<-`
println
!(
"ok"
);
}
}