]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-safety/object-safety-generics.object_safe_for_dispatch.stderr
Auto merge of #86155 - alexcrichton:abort-on-unwind, r=nikomatsakis
[rust.git] / src / test / ui / object-safety / object-safety-generics.object_safe_for_dispatch.stderr
1 error[E0038]: the trait `Bar` cannot be made into an object
2   --> $DIR/object-safety-generics.rs:20:5
3    |
4 LL |     t
5    |     ^ `Bar` cannot be made into an object
6    |
7    = help: consider moving `bar` to another trait
8 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>
9   --> $DIR/object-safety-generics.rs:10:8
10    |
11 LL | trait Bar {
12    |       --- this trait cannot be made into an object...
13 LL |     fn bar<T>(&self, t: T);
14    |        ^^^ ...because method `bar` has generic type parameters
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 `Bar` cannot be made into an object
19   --> $DIR/object-safety-generics.rs:26:5
20    |
21 LL |     t as &dyn Bar
22    |     ^ `Bar` cannot be made into an object
23    |
24    = help: consider moving `bar` to another trait
25 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>
26   --> $DIR/object-safety-generics.rs:10:8
27    |
28 LL | trait Bar {
29    |       --- this trait cannot be made into an object...
30 LL |     fn bar<T>(&self, t: T);
31    |        ^^^ ...because method `bar` has generic type parameters
32    = note: required because of the requirements on the impl of `CoerceUnsized<&dyn Bar>` for `&T`
33    = note: required by cast to type `&dyn Bar`
34
35 error: aborting due to 2 previous errors
36
37 For more information about this error, try `rustc --explain E0038`.