2020-09-02 07:40:56 +00:00
error[E0277]: the trait bound `&'a T: Unsize<&'a U>` is not satisfied
2020-05-14 10:37:58 +00:00
--> $DIR/issue-71036.rs:11:1
|
LL | impl<'a, T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<Foo<'a, U>> for Foo<'a, T> {}
2024-10-24 21:14:17 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Unsize<&'a U>` is not implemented for `&'a T`
2020-05-14 10:37:58 +00:00
|
= note: all implementations of `Unsize` are provided automatically by the compiler, see <https://doc.rust-lang.org/stable/std/marker/trait.Unsize.html> for more information
2022-08-15 20:31:37 +00:00
= note: required for `&'a &'a T` to implement `DispatchFromDyn<&'a &'a U>`
2020-05-14 10:37:58 +00:00
2023-11-21 15:44:16 +00:00
error: aborting due to 1 previous error
2020-05-14 10:37:58 +00:00
For more information about this error, try `rustc --explain E0277`.