mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
532 B
Plaintext
14 lines
532 B
Plaintext
error[E0271]: type mismatch resolving `<Rc<Apple> as Deref>::Target == Rc<Apple>`
|
|
--> $DIR/issue-67039-unsound-pin-partialeq.rs:25:29
|
|
|
|
|
LL | let _ = Pin::new(Apple) == Rc::pin(Apple);
|
|
| ^^ expected `Apple`, found `Rc<Apple>`
|
|
|
|
|
= note: expected struct `Apple`
|
|
found struct `Rc<Apple>`
|
|
= note: required for `Pin<Apple>` to implement `PartialEq<Pin<Rc<Apple>>>`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0271`.
|