summary refs log tree commit diff
path: root/src/test/ui/issue-26905.stderr
blob: f18b58a8330e032e8a2db500a82314f61ae14d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0375]: implementing the trait `CoerceUnsized` requires multiple coercions
  --> $DIR/issue-26905.rs:26:40
   |
LL | impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<MyRc<U>> for MyRc<T>{ } //~ERROR
   |                                        ^^^^^^^^^^^^^^^^^^^^^^ requires multiple coercions
   |
   = note: `CoerceUnsized` may only be implemented for a coercion between structures with one field being coerced
   = note: currently, 2 fields need coercions: _ptr (*const T to *const U), _boo (NotPhantomData<T> to NotPhantomData<U>)

error: aborting due to previous error

For more information about this error, try `rustc --explain E0375`.