2023-08-02 02:06:55 +00:00
|
|
|
error[E0119]: conflicting implementations of trait `MyTrait<'_>` for type `&_`
|
2023-11-20 18:39:44 +00:00
|
|
|
--> $DIR/coherence-negative-outlives-lifetimes.rs:18:1
|
2023-08-02 02:06:55 +00:00
|
|
|
|
|
|
|
|
LL | impl<'a, T: MyPredicate<'a>> MyTrait<'a> for T {}
|
|
|
|
| ---------------------------------------------- first implementation here
|
|
|
|
LL | impl<'a, T> MyTrait<'a> for &'a T {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `&_`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-08-02 02:06:55 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|