2022-04-21 02:47:01 -05:00
|
|
|
error[E0117]: only traits defined in the current crate can be implemented for primitive types
|
2019-10-26 10:28:02 -05:00
|
|
|
--> $DIR/impl-foreign[foreign]-for-foreign.rs:10:1
|
2019-09-18 15:14:33 -05:00
|
|
|
|
|
|
|
|
LL | impl Remote1<u32> for f64 {
|
2019-10-12 16:44:16 -05:00
|
|
|
| ^^^^^------------^^^^^---
|
|
|
|
| | | |
|
|
|
|
| | | `f64` is not defined in the current crate
|
|
|
|
| | `u32` is not defined in the current crate
|
2019-10-12 16:31:23 -05:00
|
|
|
| impl doesn't use only types from inside the current crate
|
2019-09-18 15:14:33 -05:00
|
|
|
|
|
|
|
|
= note: define and implement a trait or new type instead
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2019-09-18 15:14:33 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0117`.
|