]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence_local_err_struct.stderr
Merge commit 'f51aade56f93175dde89177a92e3669ebd8e7592' into clippyup
[rust.git] / src / test / ui / coherence / coherence_local_err_struct.stderr
1 error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
2   --> $DIR/coherence_local_err_struct.rs:14:1
3    |
4 LL | impl lib::MyCopy for lib::MyStruct<MyType> { }
5    | ^^^^^^^^^^^^^^^^^^^^^---------------------
6    | |                    |
7    | |                    `MyStruct` 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: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0117`.