```rust fn main() { if x<-1 { } } ``` produces: ``` error: expected `{`, found `<-` ``` It would be nice if it produced a suggestion to split it up: ```rust if x < -1 { ``` (This [used to happen](https://github.com/rust-lang/rust/pull/60803#discussion_r303081575), but was broken in a previous change.) <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"agnxy"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->
produces:
It would be nice if it produced a suggestion to split it up:
(This used to happen, but was broken in a previous change.)