2020-10-16 15:46:59 -05:00
|
|
|
error[E0277]: the size for values of type `(dyn Foo + 'static)` cannot be known at compilation time
|
2024-09-26 19:45:02 -05:00
|
|
|
--> $DIR/feature-gate-unsized_fn_params.rs:17:11
|
2020-10-16 15:46:59 -05:00
|
|
|
|
|
|
|
|
LL | fn foo(x: dyn Foo) {
|
2024-09-26 19:45:02 -05:00
|
|
|
| ^^^^^^^ doesn't have a size known at compile-time
|
2020-10-16 15:46:59 -05:00
|
|
|
|
|
|
|
|
= help: the trait `Sized` is not implemented for `(dyn Foo + 'static)`
|
|
|
|
= help: unsized fn params are gated as an unstable feature
|
2022-12-14 20:51:55 -06:00
|
|
|
help: you can use `impl Trait` as the argument type
|
|
|
|
|
|
|
|
|
LL | fn foo(x: impl Foo) {
|
|
|
|
| ~~~~
|
2020-10-16 15:46:59 -05:00
|
|
|
help: function arguments must have a statically known size, borrowed types always have a known size
|
|
|
|
|
|
2021-04-18 12:35:23 -05:00
|
|
|
LL | fn foo(x: &dyn Foo) {
|
2021-06-21 21:07:19 -05:00
|
|
|
| +
|
2020-10-16 15:46:59 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `(dyn Foo + 'static)` cannot be known at compilation time
|
2024-09-26 19:45:02 -05:00
|
|
|
--> $DIR/feature-gate-unsized_fn_params.rs:21:11
|
2022-12-14 20:51:55 -06:00
|
|
|
|
|
|
|
|
LL | fn bar(x: Foo) {
|
2024-09-26 19:45:02 -05:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2022-12-14 20:51:55 -06:00
|
|
|
|
|
|
|
|
= help: the trait `Sized` is not implemented for `(dyn Foo + 'static)`
|
|
|
|
= help: unsized fn params are gated as an unstable feature
|
|
|
|
help: you can use `impl Trait` as the argument type
|
|
|
|
|
|
|
|
|
LL | fn bar(x: impl Foo) {
|
|
|
|
| ++++
|
|
|
|
help: function arguments must have a statically known size, borrowed types always have a known size
|
|
|
|
|
|
2023-12-20 13:13:24 -06:00
|
|
|
LL | fn bar(x: &dyn Foo) {
|
|
|
|
| ++++
|
2022-12-14 20:51:55 -06:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `[()]` cannot be known at compilation time
|
2024-09-26 19:45:02 -05:00
|
|
|
--> $DIR/feature-gate-unsized_fn_params.rs:25:11
|
2022-12-14 20:51:55 -06:00
|
|
|
|
|
|
|
|
LL | fn qux(_: [()]) {}
|
2024-09-26 19:45:02 -05:00
|
|
|
| ^^^^ doesn't have a size known at compile-time
|
2022-12-14 20:51:55 -06:00
|
|
|
|
|
|
|
|
= help: the trait `Sized` is not implemented for `[()]`
|
|
|
|
= help: unsized fn params are gated as an unstable feature
|
2023-12-20 13:13:24 -06:00
|
|
|
help: function arguments must have a statically known size, borrowed slices always have a known size
|
2022-12-14 20:51:55 -06:00
|
|
|
|
|
|
|
|
LL | fn qux(_: &[()]) {}
|
|
|
|
| +
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `(dyn Foo + 'static)` cannot be known at compilation time
|
|
|
|
--> $DIR/feature-gate-unsized_fn_params.rs:29:9
|
2020-10-16 15:46:59 -05:00
|
|
|
|
|
|
|
|
LL | foo(*x);
|
2022-08-16 01:27:22 -05:00
|
|
|
| ^^ doesn't have a size known at compile-time
|
2020-10-16 15:46:59 -05:00
|
|
|
|
|
|
|
|
= help: the trait `Sized` is not implemented for `(dyn Foo + 'static)`
|
2022-08-24 13:36:44 -05:00
|
|
|
= note: all function arguments must have a statically known size
|
2020-10-16 15:46:59 -05:00
|
|
|
= help: unsized fn params are gated as an unstable feature
|
|
|
|
|
2022-12-14 20:51:55 -06:00
|
|
|
error: aborting due to 4 previous errors
|
2020-10-16 15:46:59 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|