rust/src/test/ui/coherence/coherence-projection-conflict-orphan.old.stderr

15 lines
576 B
Plaintext
Raw Normal View History

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