2020-04-10 17:19:47 +00:00
|
|
|
error[E0746]: return type cannot have an unboxed trait object
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-18107.rs:4:5
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | dyn AbstractRenderer
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2020-04-11 18:31:54 +00:00
|
|
|
help: use `impl AbstractRenderer` as the return type if all return paths have the same type but you want to expose only the trait in the signature
|
2020-04-10 17:19:47 +00:00
|
|
|
|
|
|
|
|
LL | impl AbstractRenderer
|
|
|
|
|
|
2020-04-11 18:31:54 +00:00
|
|
|
help: use a boxed trait object if all return paths implement trait `AbstractRenderer`
|
2020-04-10 17:19:47 +00:00
|
|
|
|
|
|
|
|
LL | Box<dyn AbstractRenderer>
|
2022-04-02 21:22:35 +00:00
|
|
|
| ++++ +
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-04-10 17:19:47 +00:00
|
|
|
For more information about this error, try `rustc --explain E0746`.
|