2020-05-28 23:27:59 +00:00
error[E0038]: the trait `Bar` cannot be made into an object
--> $DIR/issue-72410.rs:14:19
|
2020-10-16 00:23:45 +00:00
LL | where for<'a> &'a mut [dyn Bar]: ;
2020-10-20 00:57:18 +00:00
| ^^^^^^^^^^^^^^^^^ `Bar` cannot be made into an object
2020-10-16 00:23:45 +00:00
|
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>
--> $DIR/issue-72410.rs:13:8
|
2020-05-28 23:27:59 +00:00
LL | pub trait Bar {
| --- this trait cannot be made into an object...
LL | fn map()
2020-10-16 00:23:45 +00:00
| ^^^ ...because associated function `map` has no `self` parameter
help: consider turning `map` into a method by giving it a `&self` argument
2020-05-28 23:27:59 +00:00
|
2020-10-16 00:23:45 +00:00
LL | fn map(&self)
2021-06-22 02:07:19 +00:00
| +++++
2020-10-16 00:23:45 +00:00
help: alternatively, consider constraining `map` so it does not apply to trait objects
2020-05-28 23:27:59 +00:00
|
LL | where for<'a> &'a mut [dyn Bar]:, Self: Sized ;
2021-06-22 02:07:19 +00:00
| +++++++++++++
2020-05-28 23:27:59 +00:00
2023-11-21 15:44:16 +00:00
error: aborting due to 1 previous error
2020-05-28 23:27:59 +00:00
For more information about this error, try `rustc --explain E0038`.