]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-safety/object-safety-mentions-Self.object_safe_for_dispatch.stderr
Rollup merge of #88305 - ijackson:exitstatus-debug, r=dtolnay
[rust.git] / src / test / ui / object-safety / object-safety-mentions-Self.object_safe_for_dispatch.stderr
1 error[E0038]: the trait `Bar` cannot be made into an object
2   --> $DIR/object-safety-mentions-Self.rs:24:5
3    |
4 LL |     t
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/object-safety-mentions-Self.rs:11:22
9    |
10 LL | trait Bar {
11    |       --- this trait cannot be made into an object...
12 LL |     fn bar(&self, x: &Self);
13    |                      ^^^^^ ...because method `bar` references the `Self` type in this parameter
14    = help: consider moving `bar` to another trait
15    = note: required because of the requirements on the impl of `CoerceUnsized<&dyn Bar>` for `&T`
16    = note: required by cast to type `&dyn Bar`
17
18 error[E0038]: the trait `Baz` cannot be made into an object
19   --> $DIR/object-safety-mentions-Self.rs:30:5
20    |
21 LL |     t
22    |     ^ `Baz` cannot be made into an object
23    |
24 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>
25   --> $DIR/object-safety-mentions-Self.rs:15:22
26    |
27 LL | trait Baz {
28    |       --- this trait cannot be made into an object...
29 LL |     fn baz(&self) -> Self;
30    |                      ^^^^ ...because method `baz` references the `Self` type in its return type
31    = help: consider moving `baz` to another trait
32    = note: required because of the requirements on the impl of `CoerceUnsized<&dyn Baz>` for `&T`
33    = note: required by cast to type `&dyn Baz`
34
35 error: aborting due to 2 previous errors
36
37 For more information about this error, try `rustc --explain E0038`.