]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-safety/object-safety-associated-consts.curr.stderr
b67b0e4f40e8cf18347cf9594fe554ecc383ec8b
[rust.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:30
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`.