2022-11-09 22:21:11 -06:00
|
|
|
error[E0751]: found both positive and negative implementation of trait `DerefMut` for type `&MyType<'_>`:
|
2020-01-08 05:39:38 -06:00
|
|
|
--> $DIR/pin-unsound-issue-66544-derefmut.rs:12:1
|
|
|
|
|
|
|
|
|
LL | impl<'a> DerefMut for &'a MyType<'a> {
|
2020-01-08 13:10:59 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ positive implementation here
|
2020-01-08 05:39:38 -06:00
|
|
|
|
|
2020-01-08 13:10:59 -06:00
|
|
|
= note: negative implementation in crate `core`
|
2020-01-08 05:39:38 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-04-22 07:18:22 -05:00
|
|
|
For more information about this error, try `rustc --explain E0751`.
|