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