blob: 7cdc85be349a4815a0119b32d4a7d43fdaf4d509 [file]
error: unexpected token: `<-`
--> $DIR/removed-syntax-obsolete-in-place.rs:5:7
|
LL | x <- y;
| ^^
|
help: if you meant to write a comparison against a negative value, add a space in between `<` and `-`
|
LL | x < - y;
| +
error: expected expression, found keyword `in`
--> $DIR/removed-syntax-obsolete-in-place.rs:10:5
|
LL | in(foo) { bar };
| ^^ expected expression
error: aborting due to 2 previous errors