blob: 5c48a1fe98fc5b2bd7469edce31b93618e00171c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0119]: conflicting implementations of trait `Foo` for type `Bar`
--> $DIR/coherence-constrained.rs:17:1
|
LL | impl Foo for Bar {
| ---------------- first implementation here
...
LL | impl Foo for Bar {
| ^^^^^^^^^^^^^^^^ conflicting implementation for `Bar`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0119`.
|