mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
12 lines
453 B
Plaintext
12 lines
453 B
Plaintext
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 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|