2021-04-18 17:35:23 +00:00
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
|
|
|
--> $DIR/unsized-fn-arg.rs:5:17
|
|
|
|
|
|
|
|
|
LL | fn f<T: ?Sized>(t: T) {}
|
|
|
|
| - ^ doesn't have a size known at compile-time
|
|
|
|
| |
|
2023-06-14 17:22:03 +00:00
|
|
|
| this type parameter needs to be `Sized`
|
2021-04-18 17:35:23 +00:00
|
|
|
|
|
|
|
|
= help: unsized fn params are gated as an unstable feature
|
2021-07-24 01:47:53 +00:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
2021-06-22 02:07:19 +00:00
|
|
|
LL - fn f<T: ?Sized>(t: T) {}
|
|
|
|
LL + fn f<T>(t: T) {}
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2021-04-18 17:35:23 +00:00
|
|
|
help: function arguments must have a statically known size, borrowed types always have a known size
|
|
|
|
|
|
|
|
|
LL | fn f<T: ?Sized>(t: &T) {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| +
|
2021-04-18 17:35:23 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-04-18 17:35:23 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|