]> git.proxmox.com Git - rustc.git/blame - src/test/ui/associated-consts/associated-const-in-trait.stderr
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / associated-consts / associated-const-in-trait.stderr
CommitLineData
b7449926 1error[E0038]: the trait `Trait` cannot be made into an object
0731742a 2 --> $DIR/associated-const-in-trait.rs:9:6
b7449926 3 |
dc9dc135 4LL | impl dyn Trait {
29967ef6 5 | ^^^^^^^^^ `Trait` 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/associated-const-in-trait.rs:6:11
9 |
10LL | trait Trait {
11 | ----- this trait cannot be made into an object...
12LL | const N: usize;
13 | ^ ...because it contains this associated `const`
c295e0f8 14 = help: consider moving `N` to another trait
b7449926
XL
15
16error: aborting due to previous error
17
18For more information about this error, try `rustc --explain E0038`.