Fixed Into bound on TryFrom error.

fix to last commit
This commit is contained in:
Ozaren 2018-12-16 13:59:12 -05:00
parent 7a25a7ce8d
commit a1be81300f

View file

@ -25,7 +25,7 @@ LL | impl TryFrom<X> for X { //~ ERROR conflicting implementations
|
= note: conflicting implementation in crate `core`:
- impl<T, U> std::convert::TryFrom<U> for T
where T: std::convert::Into<U>;
where U: std::convert::Into<T>;
error: aborting due to 3 previous errors