]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/impl-foreign-for-fundamental[foreign].stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / coherence / impl-foreign-for-fundamental[foreign].stderr
CommitLineData
04454e1e 1error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
60c5eb7d 2 --> $DIR/impl-foreign-for-fundamental[foreign].rs:10:1
e74abb32
XL
3 |
4LL | impl Remote for Box<i32> {
29967ef6
XL
5 | ^^^^^------^^^^^--------
6 | | | |
7 | | | `i32` is not defined in the current crate
8 | | `std::alloc::Global` is not defined in the current crate
e74abb32
XL
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
04454e1e 13error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
60c5eb7d 14 --> $DIR/impl-foreign-for-fundamental[foreign].rs:14:1
e74abb32
XL
15 |
16LL | impl<T> Remote for Box<Rc<T>> {
29967ef6
XL
17 | ^^^^^^^^------^^^^^----------
18 | | | |
19 | | | `Rc` is not defined in the current crate
20 | | `std::alloc::Global` is not defined in the current crate
e74abb32
XL
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: aborting due to 2 previous errors
26
27For more information about this error, try `rustc --explain E0117`.