]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/generic_const_exprs/object-safety-err-ret.stderr
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / ui / const-generics / generic_const_exprs / object-safety-err-ret.stderr
1 error[E0038]: the trait `Foo` cannot be made into an object
2   --> $DIR/object-safety-err-ret.rs:17:16
3    |
4 LL | fn use_dyn(v: &dyn Foo) {
5    |                ^^^^^^^ `Foo` 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-err-ret.rs:8:23
9    |
10 LL | trait Foo {
11    |       --- this trait cannot be made into an object...
12 LL |     fn test(&self) -> [u8; bar::<Self>()];
13    |                       ^^^^^^^^^^^^^^^^^^^ ...because method `test` references the `Self` type in its return type
14    = help: consider moving `test` to another trait
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0038`.