blob: f515c39ea8d10044a618c7937ae47d9a069225e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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<_>`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0119`.
|