2024-04-09 05:19:48 -05:00
|
|
|
error[E0119]: conflicting implementations of trait `TryFrom<Ty>` for type `u8`
|
|
|
|
--> $DIR/conflicting-impls.rs:12:1
|
|
|
|
|
|
|
|
|
LL | impl TryFrom<Ty> for u8 {
|
|
|
|
| ----------------------- first implementation here
|
|
|
|
...
|
|
|
|
LL | impl TryFrom<Ty> for u8 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `u8`
|
|
|
|
|
2024-04-09 05:23:58 -05:00
|
|
|
error: aborting due to 1 previous error
|
2024-04-09 05:19:48 -05:00
|
|
|
|
2024-04-09 05:23:58 -05:00
|
|
|
For more information about this error, try `rustc --explain E0119`.
|