]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/impl-foreign[foreign]-for-foreign.stderr
Auto merge of #106853 - TimNN:undo-remap, r=oli-obk
[rust.git] / tests / ui / coherence / impl-foreign[foreign]-for-foreign.stderr
1 error[E0117]: only traits defined in the current crate can be implemented for primitive types
2   --> $DIR/impl-foreign[foreign]-for-foreign.rs:10:1
3    |
4 LL | impl Remote1<u32> for f64 {
5    | ^^^^^------------^^^^^---
6    | |    |                |
7    | |    |                `f64` is not defined in the current crate
8    | |    `u32` is not defined in the current crate
9    | impl doesn't use only types from inside the current crate
10    |
11    = note: define and implement a trait or new type instead
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0117`.