]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/impl[t]-foreign-for-foreign[t].stderr
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.git] / src / test / ui / coherence / impl[t]-foreign-for-foreign[t].stderr
1 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
2   --> $DIR/impl[t]-foreign-for-foreign[t].rs:11:1
3    |
4 LL | impl Remote for Rc<Local> {
5    | ^^^^^^^^^^^^^^^^---------
6    | |               |
7    | |               `Rc` 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
12 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
13   --> $DIR/impl[t]-foreign-for-foreign[t].rs:16:1
14    |
15 LL | impl<T> Remote for Arc<T> {
16    | ^^^^^^^^^^^^^^^^^^^------
17    | |                  |
18    | |                  `Arc` 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
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0117`.