]> git.lizzy.rs Git - rust.git/blob - tests/ui/kindck/kindck-inherited-copy-bound.object_safe_for_dispatch.stderr
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / kindck / kindck-inherited-copy-bound.object_safe_for_dispatch.stderr
1 error[E0277]: the trait bound `Box<{integer}>: Copy` is not satisfied
2   --> $DIR/kindck-inherited-copy-bound.rs:21:16
3    |
4 LL |     take_param(&x);
5    |     ---------- ^^ the trait `Copy` is not implemented for `Box<{integer}>`
6    |     |
7    |     required by a bound introduced by this call
8    |
9 note: required for `Box<{integer}>` to implement `Foo`
10   --> $DIR/kindck-inherited-copy-bound.rs:14:14
11    |
12 LL | impl<T:Copy> Foo for T {
13    |              ^^^     ^
14 note: required by a bound in `take_param`
15   --> $DIR/kindck-inherited-copy-bound.rs:17:17
16    |
17 LL | fn take_param<T:Foo>(foo: &T) { }
18    |                 ^^^ required by this bound in `take_param`
19
20 error[E0038]: the trait `Foo` cannot be made into an object
21   --> $DIR/kindck-inherited-copy-bound.rs:28:13
22    |
23 LL |     let z = &x as &dyn Foo;
24    |             ^^ `Foo` cannot be made into an object
25    |
26 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>
27   --> $DIR/kindck-inherited-copy-bound.rs:10:13
28    |
29 LL | trait Foo : Copy {
30    |       ---   ^^^^ ...because it requires `Self: Sized`
31    |       |
32    |       this trait cannot be made into an object...
33    = note: required for `&Box<i32>` to implement `CoerceUnsized<&dyn Foo>`
34    = note: required by cast to type `&dyn Foo`
35
36 error: aborting due to 2 previous errors
37
38 Some errors have detailed explanations: E0038, E0277.
39 For more information about an error, try `rustc --explain E0038`.