2019-08-11 21:37:05 +00:00
|
|
|
error: unexpected token: `<-`
|
2019-05-13 21:19:19 +00:00
|
|
|
--> $DIR/bad.rs:5:7
|
|
|
|
|
|
|
|
|
LL | x <- y;
|
2019-08-11 21:37:05 +00:00
|
|
|
| ^^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2019-08-11 21:37:05 +00:00
|
|
|
help: if you meant to write a comparison against a negative value, add a space in between `<` and `-`
|
|
|
|
|
|
|
|
|
LL | x < - y;
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~
|
2019-05-13 21:19:19 +00:00
|
|
|
|
|
|
|
error: expected expression, found keyword `in`
|
2019-07-13 01:37:57 +00:00
|
|
|
--> $DIR/bad.rs:10:5
|
2019-05-13 21:19:19 +00:00
|
|
|
|
|
|
|
|
LL | in(foo) { bar };
|
|
|
|
| ^^ expected expression
|
|
|
|
|
2019-07-13 01:37:57 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2019-05-13 21:19:19 +00:00
|
|
|
|