]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/impl-foreign-for-fundamental[foreign].stderr
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.git] / src / test / ui / coherence / impl-foreign-for-fundamental[foreign].stderr
1 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
2   --> $DIR/impl-foreign-for-fundamental[foreign].rs:10:1
3    |
4 LL | impl Remote for Box<i32> {
5    | ^^^^^------^^^^^--------
6    | |    |          |
7    | |    |          `i32` is not defined in the current crate
8    | |    `std::alloc::Global` 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-for-fundamental[foreign].rs:14:1
15    |
16 LL | impl<T> Remote for Box<Rc<T>> {
17    | ^^^^^^^^------^^^^^----------
18    | |       |          |
19    | |       |          `Rc` is not defined in the current crate
20    | |       `std::alloc::Global` 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: aborting due to 2 previous errors
26
27 For more information about this error, try `rustc --explain E0117`.