mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
438 B
Plaintext
13 lines
438 B
Plaintext
error[E0119]: conflicting implementations of trait `MyTrait` for type `(_, _)`
|
|
--> $DIR/coherence-tuple-conflict.rs:15:1
|
|
|
|
|
LL | impl<T> MyTrait for (T,T) {
|
|
| ------------------------- first implementation here
|
|
...
|
|
LL | impl<A,B> MyTrait for (A,B) {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(_, _)`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|