2021-04-07 01:16:11 +00:00
|
|
|
error[E0119]: conflicting implementations of trait `From<(_,)>` for type `(_,)`
|
2019-10-26 15:28:02 +00:00
|
|
|
--> $DIR/coherence-overlap-all-t-and-tuple.rs:16:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl <T> From<T> for T {
|
|
|
|
| ---------------------- first implementation here
|
|
|
|
...
|
2018-12-29 01:13:06 +00:00
|
|
|
LL | impl <T11, U11> From<(U11,)> for (T11,) {
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `(_,)`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|