]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence-fundamental-trait-objects.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / coherence / coherence-fundamental-trait-objects.stderr
1 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
2   --> $DIR/coherence-fundamental-trait-objects.rs:12:1
3    |
4 LL | impl Misc for dyn Fundamental<Local> {}
5    | ^^^^^^^^^^^^^^----------------------
6    | |             |
7    | |             `dyn Fundamental<Local>` 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`.