2022-02-06 16:43:51 +08:00
|
|
|
$ cargo run
|
|
|
|
Compiling deref-example v0.1.0 (file:///projects/deref-example)
|
|
|
|
error[E0277]: can't compare `{integer}` with `&{integer}`
|
|
|
|
--> src/main.rs:6:5
|
|
|
|
|
|
|
|
|
6 | assert_eq!(5, y);
|
|
|
|
| ^^^^^^^^^^^^^^^^ no implementation for `{integer} == &{integer}`
|
|
|
|
|
|
|
|
|
= help: the trait `PartialEq<&{integer}>` is not implemented for `{integer}`
|
|
|
|
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|
2024-06-06 21:23:21 +08:00
|
|
|
error: could not compile `deref-example` (bin "deref-example") due to 1 previous error
|