2021-04-07 01:16:11 +00:00
|
|
|
error[E0119]: conflicting implementations of trait `Foo<i32>` for type `i32`
|
2019-10-26 15:28:02 +00:00
|
|
|
--> $DIR/coherence-projection-conflict-orphan.rs:16:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl Foo<i32> for i32 { }
|
|
|
|
| --------------------- first implementation here
|
2022-06-08 18:07:59 +00:00
|
|
|
LL |
|
2018-12-29 01:13:06 +00:00
|
|
|
LL | impl<A:Iterator> Foo<A::Item> for A { }
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `i32`
|
|
|
|
|
|
2019-09-18 22:16:16 +00:00
|
|
|
= note: upstream crates may add a new impl of trait `std::iter::Iterator` for type `i32` in future versions
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|