2022-11-10 04:21:11 +00:00
|
|
|
error[E0119]: conflicting implementations of trait `Trait1<Box<_>>` for type `A`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-43355.rs:13:1
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
|
LL | impl<X, T> Trait1<X> for T where T: Trait2<X> {
|
2023-10-06 20:35:52 +00:00
|
|
|
| --------------------------------------------- first implementation here
|
2018-07-15 21:11:54 +00:00
|
|
|
...
|
|
|
|
LL | impl<X> Trait1<Box<X>> for A {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `A`
|
|
|
|
|
|
|
|
|
= note: downstream crates may implement trait `Trait2<std::boxed::Box<_>>` for type `A`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2018-05-10 05:42:03 +00:00
|
|
|
For more information about this error, try `rustc --explain E0119`.
|