2025-02-02 14:58:12 +00:00
|
|
|
error[E0746]: return type cannot be a trait object without pointer indirection
|
2020-01-13 16:13:51 -08:00
|
|
|
--> $DIR/E0746.rs:8:13
|
2020-01-13 13:13:12 -08:00
|
|
|
|
|
|
|
|
|
LL | fn foo() -> dyn Trait { Struct }
|
|
|
|
|
| ^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
2024-07-19 19:39:37 +00:00
|
|
|
help: consider returning an `impl Trait` instead of a `dyn Trait`
|
2020-01-13 13:13:12 -08:00
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - fn foo() -> dyn Trait { Struct }
|
|
|
|
|
LL + fn foo() -> impl Trait { Struct }
|
|
|
|
|
|
|
2024-07-19 19:39:37 +00:00
|
|
|
help: alternatively, box the return type, and wrap all of the returned values in `Box::new`
|
2023-05-18 01:47:55 +00:00
|
|
|
|
|
|
|
|
|
LL | fn foo() -> Box<dyn Trait> { Box::new(Struct) }
|
|
|
|
|
| ++++ + +++++++++ +
|
2020-01-13 13:13:12 -08:00
|
|
|
|
2025-02-02 14:58:12 +00:00
|
|
|
error[E0746]: return type cannot be a trait object without pointer indirection
|
2020-01-13 16:13:51 -08:00
|
|
|
--> $DIR/E0746.rs:11:13
|
2020-01-13 13:13:12 -08:00
|
|
|
|
|
|
|
|
|
LL | fn bar() -> dyn Trait {
|
|
|
|
|
| ^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
2024-11-27 03:34:56 +00:00
|
|
|
help: consider returning an `impl Trait` instead of a `dyn Trait`
|
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - fn bar() -> dyn Trait {
|
|
|
|
|
LL + fn bar() -> impl Trait {
|
|
|
|
|
|
|
2024-11-27 03:34:56 +00:00
|
|
|
help: alternatively, box the return type, and wrap all of the returned values in `Box::new`
|
2023-05-18 01:47:55 +00:00
|
|
|
|
|
|
|
|
|
LL ~ fn bar() -> Box<dyn Trait> {
|
|
|
|
|
LL | if true {
|
|
|
|
|
LL ~ return Box::new(0);
|
|
|
|
|
LL | }
|
|
|
|
|
LL ~ Box::new(42)
|
|
|
|
|
|
|
2020-01-13 13:13:12 -08:00
|
|
|
|
2020-01-13 16:12:44 -08:00
|
|
|
error: aborting due to 2 previous errors
|
2020-01-13 13:13:12 -08:00
|
|
|
|
2020-01-13 17:21:31 -08:00
|
|
|
For more information about this error, try `rustc --explain E0746`.
|