blob: 5d62a86b96f0764c8922fe2448ee80b124b9d53b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0038]: the trait `NotObjectSafe` cannot be made into an object
--> $DIR/coherence-impl-trait-for-trait-object-safe.rs:17:6
|
LL | impl NotObjectSafe for NotObjectSafe { } //~ ERROR E0038
| ^^^^^^^^^^^^^ the trait `NotObjectSafe` cannot be made into an object
|
= note: method `eq` references the `Self` type in its arguments or return type
error: aborting due to previous error
For more information about this error, try `rustc --explain E0038`.
|