]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-67039-unsound-pin-partialeq.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-67039-unsound-pin-partialeq.stderr
1 error[E0271]: type mismatch resolving `<std::rc::Rc<Apple> as std::ops::Deref>::Target == std::rc::Rc<Apple>`
2 --> $DIR/issue-67039-unsound-pin-partialeq.rs:25:29
3 |
4 LL | let _ = Pin::new(Apple) == Rc::pin(Apple);
5 | ^^ expected struct `Apple`, found struct `std::rc::Rc`
6 |
7 = note: expected type `Apple`
8 found struct `std::rc::Rc<Apple>`
9 = note: required because of the requirements on the impl of `std::cmp::PartialEq<std::pin::Pin<std::rc::Rc<Apple>>>` for `std::pin::Pin<Apple>`
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0271`.