]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/issue-72410.stderr
Rollup merge of #100953 - joshtriplett:write-docs, r=Mark-Simulacrum
[rust.git] / src / test / ui / traits / issue-72410.stderr
1 error[E0038]: the trait `Bar` cannot be made into an object
2   --> $DIR/issue-72410.rs:14:19
3    |
4 LL |     where for<'a> &'a mut [dyn Bar]: ;
5    |                   ^^^^^^^^^^^^^^^^^ `Bar` 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/issue-72410.rs:13:8
9    |
10 LL | pub trait Bar {
11    |           --- this trait cannot be made into an object...
12 LL |     fn map()
13    |        ^^^ ...because associated function `map` has no `self` parameter
14 help: consider turning `map` into a method by giving it a `&self` argument
15    |
16 LL |     fn map(&self)
17    |            +++++
18 help: alternatively, consider constraining `map` so it does not apply to trait objects
19    |
20 LL |     where for<'a> &'a mut [dyn Bar]:, Self: Sized ;
21    |                                     +++++++++++++
22
23 error: aborting due to previous error
24
25 For more information about this error, try `rustc --explain E0038`.