2021-12-06 18:55:58 +01:00
|
|
|
error: invalid comparison operator `<>`
|
|
|
|
|
--> $DIR/less-than-greater-than.rs:2:22
|
|
|
|
|
|
|
|
|
|
|
LL | println!("{}", 1 <> 2);
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
|
|
help: `<>` is not a valid comparison operator, use `!=`
|
|
|
|
|
|
|
|
|
|
|
LL | println!("{}", 1 != 2);
|
|
|
|
|
| ~~
|
2021-12-06 18:55:58 +01:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-12-06 18:55:58 +01:00
|
|
|
|