rust/tests/ui/coherence/coherence-projection-conflict-orphan.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
574 B
Plaintext
Raw Normal View History

2021-04-07 01:16:11 +00:00
error[E0119]: conflicting implementations of trait `Foo<i32>` for type `i32`
--> $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`
|
= 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`.