]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-impl-trait-for-trait-object-safe.stderr
ed6be60de460cb14f7531bf10d9f955e9fa5678e
[rust.git] / src / test / ui / coherence / coherence-impl-trait-for-trait-object-safe.stderr
1 error[E0038]: the trait `NotObjectSafe` cannot be made into an object
2   --> $DIR/coherence-impl-trait-for-trait-object-safe.rs:7:6
3    |
4 LL | trait NotObjectSafe { fn eq(&self, other: Self); }
5    |                          -- method `eq` references the `Self` type in its parameters or return type
6 LL | impl NotObjectSafe for dyn NotObjectSafe { }
7    |      ^^^^^^^^^^^^^ the trait `NotObjectSafe` cannot be made into an object
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0038`.