2023-02-02 21:22:02 +00:00
|
|
|
error[E0277]: the size for values of type `(dyn Fn() -> Fut + 'static)` cannot be known at compilation time
|
2024-09-27 00:45:02 +00:00
|
|
|
--> $DIR/dont-elaborate-non-self.rs:7:14
|
2023-02-02 21:22:02 +00:00
|
|
|
|
|
|
|
|
|
LL | fn f<Fut>(a: dyn F<Fut>) {}
|
2024-09-27 00:45:02 +00:00
|
|
|
| ^^^^^^^^^^ doesn't have a size known at compile-time
|
2023-02-02 21:22:02 +00:00
|
|
|
|
|
|
|
|
|
= help: the trait `Sized` is not implemented for `(dyn Fn() -> Fut + 'static)`
|
|
|
|
|
= help: unsized fn params are gated as an unstable feature
|
|
|
|
|
help: you can use `impl Trait` as the argument type
|
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - fn f<Fut>(a: dyn F<Fut>) {}
|
|
|
|
|
LL + fn f<Fut>(a: impl F<Fut>) {}
|
|
|
|
|
|
|
2023-02-02 21:22:02 +00:00
|
|
|
help: function arguments must have a statically known size, borrowed types always have a known size
|
|
|
|
|
|
|
|
|
|
|
LL | fn f<Fut>(a: &dyn F<Fut>) {}
|
|
|
|
|
| +
|
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-02-02 21:22:02 +00:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|