]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence-impl-trait-for-trait-object-safe.stderr
Auto merge of #106853 - TimNN:undo-remap, r=oli-obk
[rust.git] / tests / 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:24
3    |
4 LL | impl NotObjectSafe for dyn NotObjectSafe { }
5    |                        ^^^^^^^^^^^^^^^^^ `NotObjectSafe` cannot be made into an object
6    |
7 note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
8   --> $DIR/coherence-impl-trait-for-trait-object-safe.rs:6:43
9    |
10 LL | trait NotObjectSafe { fn eq(&self, other: Self); }
11    |       -------------                       ^^^^ ...because method `eq` references the `Self` type in this parameter
12    |       |
13    |       this trait cannot be made into an object...
14    = help: consider moving `eq` to another trait
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0038`.