]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/impl-foreign[fundemental[foreign]]-for-foreign.stderr
Merge from rustc
[rust.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 primitive 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    | |    `std::alloc::Global` is not defined in the current crate
10    | impl doesn't use only types from inside the current crate
11    |
12    = note: define and implement a trait or new type instead
13
14 error[E0117]: only traits defined in the current crate can be implemented for primitive types
15   --> $DIR/impl-foreign[fundemental[foreign]]-for-foreign.rs:15:1
16    |
17 LL | impl Remote1<Box<Rc<i32>>> for f64 {
18    | ^^^^^---------------------^^^^^---
19    | |    |                         |
20    | |    |                         `f64` is not defined in the current crate
21    | |    `Rc` is not defined in the current crate
22    | |    `std::alloc::Global` is not defined in the current crate
23    | impl doesn't use only types from inside the current crate
24    |
25    = note: define and implement a trait or new type instead
26
27 error[E0117]: only traits defined in the current crate can be implemented for primitive types
28   --> $DIR/impl-foreign[fundemental[foreign]]-for-foreign.rs:19:1
29    |
30 LL | impl<T> Remote1<Box<Rc<T>>> for f32 {
31    | ^^^^^^^^-------------------^^^^^---
32    | |       |                       |
33    | |       |                       `f32` is not defined in the current crate
34    | |       `Rc` is not defined in the current crate
35    | |       `std::alloc::Global` is not defined in the current crate
36    | impl doesn't use only types from inside the current crate
37    |
38    = note: define and implement a trait or new type instead
39
40 error: aborting due to 3 previous errors
41
42 For more information about this error, try `rustc --explain E0117`.