]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/object-unsafe-trait-should-use-where-sized.stderr
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / object-unsafe-trait-should-use-where-sized.stderr
1 error[E0307]: invalid `self` parameter type: ()
2   --> $DIR/object-unsafe-trait-should-use-where-sized.rs:6:18
3    |
4 LL |     fn bar(self: ()) {}
5    |                  ^^
6    |
7    = note: type of `self` must be `Self` or a type that dereferences to it
8    = help: consider changing to `self`, `&self`, `&mut self`, `self: Box<Self>`, `self: Rc<Self>`, `self: Arc<Self>`, or `self: Pin<P>` (where P is one of the previous types except `Self`)
9
10 error[E0038]: the trait `Trait` cannot be made into an object
11   --> $DIR/object-unsafe-trait-should-use-where-sized.rs:9:12
12    |
13 LL | fn bar(x: &dyn Trait) {}
14    |            ^^^^^^^^^ `Trait` cannot be made into an object
15    |
16 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>
17   --> $DIR/object-unsafe-trait-should-use-where-sized.rs:5:8
18    |
19 LL | trait Trait {
20    |       ----- this trait cannot be made into an object...
21 LL |     fn foo() where Self: Other, { }
22    |        ^^^ ...because associated function `foo` has no `self` parameter
23 LL |     fn bar(self: ()) {}
24    |                  ^^ ...because method `bar`'s `self` parameter cannot be dispatched on
25 help: consider turning `foo` into a method by giving it a `&self` argument
26    |
27 LL |     fn foo(&self) where Self: Other, { }
28    |            +++++
29 help: alternatively, consider constraining `foo` so it does not apply to trait objects
30    |
31 LL |     fn foo() where Self: Other, Self: Sized, { }
32    |                               +++++++++++++
33 help: consider changing method `bar`'s `self` parameter to be `&self`
34    |
35 LL |     fn bar(self: &Self) {}
36    |                  ~~~~~
37
38 error: aborting due to 2 previous errors
39
40 Some errors have detailed explanations: E0038, E0307.
41 For more information about an error, try `rustc --explain E0038`.