]> git.proxmox.com Git - rustc.git/blob - src/test/ui/coherence/impl-foreign[fundemental[foreign]]-for-foreign.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / coherence / impl-foreign[fundemental[foreign]]-for-foreign.stderr
1 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
2 --> $DIR/impl-foreign[fundemental[foreign]]-for-foreign.rs:11:1
3 |
4 LL | impl Remote1<Box<String>> for i32 {
5 | ^^^^^--------------------^^^^^---
6 | | | |
7 | | | `i32` is not defined in the current crate
8 | | `String` 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[E0117]: only traits defined in the current crate can be implemented for arbitrary types
14 --> $DIR/impl-foreign[fundemental[foreign]]-for-foreign.rs:15:1
15 |
16 LL | impl Remote1<Box<Rc<i32>>> for f64 {
17 | ^^^^^---------------------^^^^^---
18 | | | |
19 | | | `f64` is not defined in the current crate
20 | | `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
25 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
26 --> $DIR/impl-foreign[fundemental[foreign]]-for-foreign.rs:19:1
27 |
28 LL | impl<T> Remote1<Box<Rc<T>>> for f32 {
29 | ^^^^^^^^-------------------^^^^^---
30 | | | |
31 | | | `f32` is not defined in the current crate
32 | | `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
37 error: aborting due to 3 previous errors
38
39 For more information about this error, try `rustc --explain E0117`.