2018-08-08 14:28:26 +02:00
|
|
|
error[E0277]: the size for values of type `Y` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:9:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z: ?Sized>(x: &X) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y: Y;
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z: ?Sized>(x: &X) {
|
|
|
|
|
LL + fn f1<W: ?Sized, X: ?Sized, Y, Z: ?Sized>(x: &X) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2022-12-28 09:26:30 -08:00
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
|
|
LL | let y: &Y;
|
|
|
|
|
| +
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:7:12
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z: ?Sized>(x: &X) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | let _: W; // <-- this is OK, no bindings created, no initializer.
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let _: (isize, (X, isize));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: only the last element of a tuple may have a dynamically sized type
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z: ?Sized>(x: &X) {
|
|
|
|
|
LL + fn f1<W: ?Sized, X, Y: ?Sized, Z: ?Sized>(x: &X) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `Z` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:11:12
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z: ?Sized>(x: &X) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y: (isize, (Z, usize));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: only the last element of a tuple may have a dynamically sized type
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z: ?Sized>(x: &X) {
|
|
|
|
|
LL + fn f1<W: ?Sized, X: ?Sized, Y: ?Sized, Z>(x: &X) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:15:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f2<X: ?Sized, Y: ?Sized>(x: &X) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y: X;
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f2<X: ?Sized, Y: ?Sized>(x: &X) {
|
|
|
|
|
LL + fn f2<X, Y: ?Sized>(x: &X) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2022-12-28 09:26:30 -08:00
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
|
|
LL | let y: &X;
|
|
|
|
|
| +
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `Y` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:17:12
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f2<X: ?Sized, Y: ?Sized>(x: &X) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y: (isize, (Y, isize));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: only the last element of a tuple may have a dynamically sized type
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f2<X: ?Sized, Y: ?Sized>(x: &X) {
|
|
|
|
|
LL + fn f2<X: ?Sized, Y>(x: &X) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:22:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f3<X: ?Sized>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y: X = *x1;
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f3<X: ?Sized>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
|
|
|
|
LL + fn f3<X>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2022-12-28 09:26:30 -08:00
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
|
|
LL | let y: &X = *x1;
|
|
|
|
|
| +
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:24:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f3<X: ?Sized>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y = *x2;
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f3<X: ?Sized>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
|
|
|
|
LL + fn f3<X>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2024-07-31 22:39:40 +00:00
|
|
|
help: references are always `Sized`, even if they point to unsized data; consider not dereferencing the expression
|
|
|
|
|
|
|
|
|
|
|
LL - let y = *x2;
|
|
|
|
|
LL + let y = x2;
|
|
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:26:10
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f3<X: ?Sized>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let (y, z) = (*x3, 4);
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f3<X: ?Sized>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
|
|
|
|
LL + fn f3<X>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:30:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f4<X: ?Sized + T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y: X = *x1;
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f4<X: ?Sized + T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
|
|
|
|
LL + fn f4<X: T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2022-12-28 09:26:30 -08:00
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
|
|
LL | let y: &X = *x1;
|
|
|
|
|
| +
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:32:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f4<X: ?Sized + T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let y = *x2;
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f4<X: ?Sized + T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
|
|
|
|
LL + fn f4<X: T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2024-07-31 22:39:40 +00:00
|
|
|
help: references are always `Sized`, even if they point to unsized data; consider not dereferencing the expression
|
|
|
|
|
|
|
|
|
|
|
LL - let y = *x2;
|
|
|
|
|
LL + let y = x2;
|
|
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized6.rs:34:10
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-10-07 14:23:56 -07:00
|
|
|
LL | fn f4<X: ?Sized + T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2023-06-14 19:22:03 +02:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-10-07 14:23:56 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | let (y, z) = (*x3, 4);
|
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-29 00:11:34 +09:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn f4<X: ?Sized + T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
|
|
|
|
LL + fn f4<X: T>(x1: Box<X>, x2: Box<X>, x3: Box<X>) {
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2024-09-27 00:45:02 +00:00
|
|
|
--> $DIR/unsized6.rs:38:21
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | fn g1<X: ?Sized>(x: X) {}
|
2024-09-27 00:45:02 +00:00
|
|
|
| - ^ doesn't have a size known at compile-time
|
2019-10-07 14:23:56 -07:00
|
|
|
| |
|
2023-06-14 19:22:03 +02:00
|
|
|
| this type parameter needs to be `Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-10-16 17:46:59 -03:00
|
|
|
= help: unsized fn params are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn g1<X: ?Sized>(x: X) {}
|
|
|
|
|
LL + fn g1<X>(x: X) {}
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2020-07-10 18:11:40 -07:00
|
|
|
help: function arguments must have a statically known size, borrowed types always have a known size
|
|
|
|
|
|
|
2021-04-18 19:35:23 +02:00
|
|
|
LL | fn g1<X: ?Sized>(x: &X) {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2024-09-27 00:45:02 +00:00
|
|
|
--> $DIR/unsized6.rs:40:25
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | fn g2<X: ?Sized + T>(x: X) {}
|
2024-09-27 00:45:02 +00:00
|
|
|
| - ^ doesn't have a size known at compile-time
|
2019-10-07 14:23:56 -07:00
|
|
|
| |
|
2023-06-14 19:22:03 +02:00
|
|
|
| this type parameter needs to be `Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-10-16 17:46:59 -03:00
|
|
|
= help: unsized fn params are gated as an unstable feature
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn g2<X: ?Sized + T>(x: X) {}
|
|
|
|
|
LL + fn g2<X: T>(x: X) {}
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2020-07-10 18:11:40 -07:00
|
|
|
help: function arguments must have a statically known size, borrowed types always have a known size
|
|
|
|
|
|
|
2021-04-18 19:35:23 +02:00
|
|
|
LL | fn g2<X: ?Sized + T>(x: &X) {}
|
2021-06-21 19:07:19 -07:00
|
|
|
| +
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
|
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|