]> git.proxmox.com Git - rustc.git/blob - src/test/ui/object-safety/object-safety-associated-consts.curr.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / object-safety / object-safety-associated-consts.curr.stderr
1 error[E0038]: the trait `Bar` cannot be made into an object
2 --> $DIR/object-safety-associated-consts.rs:12:1
3 |
4 LL | const X: usize;
5 | - the trait cannot contain associated consts like `X`
6 ...
7 LL | fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
8 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Bar` cannot be made into an object
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0038`.