]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-26905.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-26905.stderr
1 error[E0375]: implementing the trait `CoerceUnsized` requires multiple coercions
2   --> $DIR/issue-26905.rs:16:40
3    |
4 LL | impl<T: ?Sized + Unsize<U>, U: ?Sized> CoerceUnsized<MyRc<U>> for MyRc<T>{ }
5    |                                        ^^^^^^^^^^^^^^^^^^^^^^ requires multiple coercions
6    |
7    = note: `CoerceUnsized` may only be implemented for a coercion between structures with one field being coerced
8    = note: currently, 2 fields need coercions: `_ptr` (`*const T` to `*const U`), `_boo` (`NotPhantomData<T>` to `NotPhantomData<U>`)
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0375`.