]> git.proxmox.com Git - rustc.git/blob - src/test/ui/coherence/coherence-impl-trait-for-trait-object-safe.old.stderr
New upstream version 1.39.0+dfsg1
[rustc.git] / src / test / ui / coherence / coherence-impl-trait-for-trait-object-safe.old.stderr
1 error[E0038]: the trait `NotObjectSafe` cannot be made into an object
2 --> $DIR/coherence-impl-trait-for-trait-object-safe.rs:11: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`.