2019-01-08 22:14:04 +01:00
error[E0038]: the trait `Trait` cannot be made into an object
2024-10-09 23:31:01 +02:00
--> $DIR/wf-convert-dyn-incompat-trait-obj-box.rs:16:33
2019-01-08 22:14:04 +01:00
|
LL | let t_box: Box<dyn Trait> = Box::new(S);
2020-10-19 17:57:18 -07:00
| ^^^^^^^^^^^ `Trait` cannot be made into an object
2019-01-08 22:14:04 +01:00
|
2024-09-25 10:38:40 +02:00
note: for a trait to be "dyn-compatible" 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>
2024-10-09 23:31:01 +02:00
--> $DIR/wf-convert-dyn-incompat-trait-obj-box.rs:6:14
2020-10-15 17:23:45 -07:00
|
LL | trait Trait: Sized {}
| ----- ^^^^^ ...because it requires `Self: Sized`
| |
| this trait cannot be made into an object...
2023-10-24 16:45:04 +00:00
= help: only type `S` implements the trait, consider using it directly instead
2023-05-11 02:10:56 +00:00
= note: required for the cast from `Box<S>` to `Box<dyn Trait>`
2019-01-08 22:14:04 +01:00
error[E0038]: the trait `Trait` cannot be made into an object
2024-10-09 23:31:01 +02:00
--> $DIR/wf-convert-dyn-incompat-trait-obj-box.rs:17:15
2019-01-08 22:14:04 +01:00
|
LL | takes_box(Box::new(S));
2020-10-19 17:57:18 -07:00
| ^^^^^^^^^^^ `Trait` cannot be made into an object
2019-01-08 22:14:04 +01:00
|
2024-09-25 10:38:40 +02:00
note: for a trait to be "dyn-compatible" 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>
2024-10-09 23:31:01 +02:00
--> $DIR/wf-convert-dyn-incompat-trait-obj-box.rs:6:14
2020-10-15 17:23:45 -07:00
|
LL | trait Trait: Sized {}
| ----- ^^^^^ ...because it requires `Self: Sized`
| |
| this trait cannot be made into an object...
2023-10-24 16:45:04 +00:00
= help: only type `S` implements the trait, consider using it directly instead
2023-05-11 02:10:56 +00:00
= note: required for the cast from `Box<S>` to `Box<(dyn Trait + 'static)>`
2019-01-08 22:14:04 +01:00
error[E0038]: the trait `Trait` cannot be made into an object
2024-10-09 23:31:01 +02:00
--> $DIR/wf-convert-dyn-incompat-trait-obj-box.rs:15:5
2019-01-08 22:14:04 +01:00
|
LL | Box::new(S) as Box<dyn Trait>;
2020-10-19 17:57:18 -07:00
| ^^^^^^^^^^^ `Trait` cannot be made into an object
2019-01-08 22:14:04 +01:00
|
2024-09-25 10:38:40 +02:00
note: for a trait to be "dyn-compatible" 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>
2024-10-09 23:31:01 +02:00
--> $DIR/wf-convert-dyn-incompat-trait-obj-box.rs:6:14
2020-10-15 17:23:45 -07:00
|
LL | trait Trait: Sized {}
| ----- ^^^^^ ...because it requires `Self: Sized`
| |
| this trait cannot be made into an object...
2023-10-24 16:45:04 +00:00
= help: only type `S` implements the trait, consider using it directly instead
2023-05-11 02:10:56 +00:00
= note: required for the cast from `Box<S>` to `Box<dyn Trait>`
2019-01-08 22:14:04 +01:00
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0038`.