]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-safety/object-safety-sized-2.object_safe_for_dispatch.stderr
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
[rust.git] / src / test / ui / object-safety / object-safety-sized-2.object_safe_for_dispatch.stderr
1 error[E0038]: the trait `Bar` cannot be made into an object
2   --> $DIR/object-safety-sized-2.rs:16: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-sized-2.rs:9:18
9    |
10 LL | trait Bar
11    |       --- this trait cannot be made into an object...
12 LL |     where Self : Sized
13    |                  ^^^^^ ...because it requires `Self: Sized`
14    = note: required for `&T` to implement `CoerceUnsized<&dyn Bar>`
15    = note: required by cast to type `&dyn Bar`
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0038`.