]> git.proxmox.com Git - rustc.git/blame - src/test/ui/object-safety/object-safety-associated-consts.curr.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / object-safety / object-safety-associated-consts.curr.stderr
CommitLineData
ff7c6d11 1error[E0038]: the trait `Bar` cannot be made into an object
f2b60f7d 2 --> $DIR/object-safety-associated-consts.rs:12:31
ff7c6d11 3 |
dc9dc135 4LL | fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
f2b60f7d 5 | ^^^^^^^ `Bar` cannot be made into an object
74b04a01 6 |
29967ef6
XL
7note: 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 |
10LL | trait Bar {
11 | --- this trait cannot be made into an object...
12LL | const X: usize;
13 | ^ ...because it contains this associated `const`
c295e0f8 14 = help: consider moving `X` to another trait
ff7c6d11
XL
15
16error: aborting due to previous error
17
0531ce1d 18For more information about this error, try `rustc --explain E0038`.