mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
13 lines
387 B
Plaintext
13 lines
387 B
Plaintext
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`.
|