2017-10-22 15:14:53 +00:00
|
|
|
error[E0119]: conflicting implementations of trait `std::convert::Into<_>` for type `GenX<_>`:
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-27403.rs:5:1
|
2017-10-22 15:14:53 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | impl<S> Into<S> for GenX<S> { //~ ERROR conflicting implementations
|
2017-12-18 07:46:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-22 15:14:53 +00:00
|
|
|
|
|
|
|
|
= note: conflicting implementation in crate `core`:
|
|
|
|
- impl<T, U> std::convert::Into<U> for T
|
|
|
|
where U: std::convert::From<T>;
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0119`.
|