692bc344d5
Go over all structured parser suggestions and make them verbose style. When suggesting to add or remove delimiters, turn them into multiple suggestion parts.
14 lines
319 B
Plaintext
14 lines
319 B
Plaintext
error: invalid comparison operator `<>`
|
|
--> $DIR/less-than-greater-than.rs:2:22
|
|
|
|
|
LL | println!("{}", 1 <> 2);
|
|
| ^^
|
|
|
|
|
help: `<>` is not a valid comparison operator, use `!=`
|
|
|
|
|
LL | println!("{}", 1 != 2);
|
|
| ~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|