2018-07-15 14:11:54 -07:00
|
|
|
error[E0375]: implementing the trait `CoerceUnsized` requires multiple coercions
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-26905.rs:16:40
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<MyRc<U>> for MyRc<T>{ }
|
2018-07-15 14:11:54 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ requires multiple coercions
|
|
|
|
|
|
|
|
|
= note: `CoerceUnsized` may only be implemented for a coercion between structures with one field being coerced
|
2018-10-09 01:13:07 -04:00
|
|
|
= note: currently, 2 fields need coercions: `_ptr` (`*const T` to `*const U`), `_boo` (`NotPhantomData<T>` to `NotPhantomData<U>`)
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0375`.
|