2023-11-16 21:00:38 -06:00
|
|
|
error[E0119]: conflicting implementations of trait `Bar` for type `Box<_>`
|
|
|
|
--> $DIR/negative-coherence-check-placeholder-outlives.rs:11:1
|
|
|
|
|
|
|
|
|
LL | impl<T> Bar for T where T: Foo {}
|
|
|
|
| ------------------------------ first implementation here
|
|
|
|
LL | impl<T> Bar for Box<T> {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Box<_>`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-11-16 21:00:38 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|