2017-10-22 10:14:53 -05:00
|
|
|
error[E0119]: conflicting implementations of trait `std::convert::Into<_>` for type `GenX<_>`:
|
|
|
|
--> $DIR/issue-27403.rs:15:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | impl<S> Into<S> for GenX<S> { //~ ERROR conflicting implementations
|
2017-12-18 01:46:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-22 10:14:53 -05: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-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0119"
|