]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-safety/object-safety-associated-consts.object_safe_for_dispatch.stderr
move an `assert!` to the right place
[rust.git] / src / test / ui / object-safety / object-safety-associated-consts.object_safe_for_dispatch.stderr
1 error[E0038]: the trait `Bar` cannot be made into an object
2   --> $DIR/object-safety-associated-consts.rs:14: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-associated-consts.rs:9:11
9    |
10 LL | trait Bar {
11    |       --- this trait cannot be made into an object...
12 LL |     const X: usize;
13    |           ^ ...because it contains this associated `const`
14    = help: consider moving `X` 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: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0038`.