]> git.lizzy.rs Git - rust.git/blob - tests/ui/object-safety/object-safety-supertrait-mentions-Self.stderr
Rollup merge of #106323 - starkat99:stabilize-f16c_target_feature, r=petrochenkov
[rust.git] / tests / ui / object-safety / object-safety-supertrait-mentions-Self.stderr
1 error[E0038]: the trait `Baz` cannot be made into an object
2   --> $DIR/object-safety-supertrait-mentions-Self.rs:15:31
3    |
4 LL | fn make_baz<T:Baz>(t: &T) -> &dyn Baz {
5    |                               ^^^^^^^ `Baz` 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-supertrait-mentions-Self.rs:8:13
9    |
10 LL | trait Baz : Bar<Self> {
11    |       ---   ^^^^^^^^^ ...because it uses `Self` as a type parameter
12    |       |
13    |       this trait cannot be made into an object...
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0038`.