]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/gat-in-trait-path.base.stderr
Rollup merge of #104024 - noeddl:unused-must-use, r=compiler-errors
[rust.git] / src / test / ui / generic-associated-types / gat-in-trait-path.base.stderr
1 error[E0038]: the trait `Foo` cannot be made into an object
2   --> $DIR/gat-in-trait-path.rs:26:17
3    |
4 LL | fn f(_arg : Box<dyn for<'a> Foo<A<'a> = &'a ()>>) {}
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/gat-in-trait-path.rs:10:10
9    |
10 LL | trait Foo {
11    |       --- this trait cannot be made into an object...
12 LL |     type A<'a> where Self: 'a;
13    |          ^ ...because it contains the generic associated type `A`
14    = help: consider moving `A` to another trait
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0038`.