]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/impl-foreign-for-foreign[foreign].stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / impl-foreign-for-foreign[foreign].stderr
CommitLineData
e74abb32 1error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
60c5eb7d 2 --> $DIR/impl-foreign-for-foreign[foreign].rs:10:1
e74abb32
XL
3 |
4LL | impl Remote1<Rc<i32>> for i32 {
5 | ^^^^^----------------^^^^^---
6 | | | |
7 | | | `i32` is not defined in the current crate
8 | | `std::rc::Rc` 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
13error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
60c5eb7d 14 --> $DIR/impl-foreign-for-foreign[foreign].rs:14:1
e74abb32
XL
15 |
16LL | impl Remote1<Rc<Local>> for f64 {
17 | ^^^^^------------------^^^^^---
18 | | | |
19 | | | `f64` is not defined in the current crate
20 | | `std::rc::Rc` is not defined in the current crate
21 | impl doesn't use only types from inside the current crate
22 |
23 = note: define and implement a trait or new type instead
24
25error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
60c5eb7d 26 --> $DIR/impl-foreign-for-foreign[foreign].rs:18:1
e74abb32
XL
27 |
28LL | impl<T> Remote1<Rc<T>> for f32 {
29 | ^^^^^^^^--------------^^^^^---
30 | | | |
31 | | | `f32` is not defined in the current crate
32 | | `std::rc::Rc` is not defined in the current crate
33 | impl doesn't use only types from inside the current crate
34 |
35 = note: define and implement a trait or new type instead
36
37error: aborting due to 3 previous errors
38
39For more information about this error, try `rustc --explain E0117`.