2018-08-08 12:28:26 +00:00
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2023-08-24 19:23:06 +00:00
|
|
|
--> $DIR/unsized3.rs:7:10
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-02-02 10:03:54 +00:00
|
|
|
LL | fn f1<X: ?Sized>(x: &X) {
|
2023-06-14 17:22:03 +00:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | f2::<X>(x);
|
2023-08-24 19:23:06 +00:00
|
|
|
| ^ doesn't have a size known at compile-time
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `f2`
|
|
|
|
--> $DIR/unsized3.rs:10:7
|
|
|
|
|
|
|
|
|
LL | fn f2<X>(x: &X) {
|
|
|
|
| ^ required by this bound in `f2`
|
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 f1<X: ?Sized>(x: &X) {
|
|
|
|
LL + fn f1<X>(x: &X) {
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2020-03-12 03:38:21 +00:00
|
|
|
help: consider relaxing the implicit `Sized` restriction
|
|
|
|
|
|
|
|
|
LL | fn f2<X: ?Sized>(x: &X) {
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2023-08-24 19:23:06 +00:00
|
|
|
--> $DIR/unsized3.rs:18:10
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-02-02 10:03:54 +00:00
|
|
|
LL | fn f3<X: ?Sized + T>(x: &X) {
|
2023-06-14 17:22:03 +00:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | f4::<X>(x);
|
2023-08-24 19:23:06 +00:00
|
|
|
| ^ doesn't have a size known at compile-time
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `f4`
|
|
|
|
--> $DIR/unsized3.rs:21:7
|
|
|
|
|
|
|
|
|
LL | fn f4<X: T>(x: &X) {
|
|
|
|
| ^ required by this bound in `f4`
|
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 f3<X: ?Sized + T>(x: &X) {
|
|
|
|
LL + fn f3<X: T>(x: &X) {
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2020-03-12 03:38:21 +00:00
|
|
|
help: consider relaxing the implicit `Sized` restriction
|
|
|
|
|
|
2020-05-16 19:56:21 +00:00
|
|
|
LL | fn f4<X: T + ?Sized>(x: &X) {
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2019-09-16 04:58:20 +00:00
|
|
|
--> $DIR/unsized3.rs:33:8
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-10-07 21:23:56 +00:00
|
|
|
LL | fn f8<X: ?Sized>(x1: &S<X>, x2: &S<X>) {
|
2023-06-14 17:22:03 +00:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | f5(x1);
|
2021-09-07 11:30:53 +00:00
|
|
|
| -- ^^ doesn't have a size known at compile-time
|
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-03-30 20:37:30 +00:00
|
|
|
note: required because it appears within the type `S<X>`
|
|
|
|
--> $DIR/unsized3.rs:28:8
|
|
|
|
|
|
|
|
|
LL | struct S<X: ?Sized> {
|
|
|
|
| ^
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `f5`
|
|
|
|
--> $DIR/unsized3.rs:24:7
|
|
|
|
|
|
|
|
|
LL | fn f5<Y>(x: &Y) {}
|
|
|
|
| ^ required by this bound in `f5`
|
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 f8<X: ?Sized>(x1: &S<X>, x2: &S<X>) {
|
|
|
|
LL + fn f8<X>(x1: &S<X>, x2: &S<X>) {
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2020-06-12 22:13:43 +00:00
|
|
|
help: consider relaxing the implicit `Sized` restriction
|
|
|
|
|
|
|
|
|
LL | fn f5<Y: ?Sized>(x: &Y) {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2022-08-16 06:27:22 +00:00
|
|
|
--> $DIR/unsized3.rs:40:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-10-07 21:23:56 +00:00
|
|
|
LL | fn f9<X: ?Sized>(x1: Box<S<X>>) {
|
2023-06-14 17:22:03 +00:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | f5(&(*x1, 34));
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^ doesn't have a size known at compile-time
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-03-30 20:37:30 +00:00
|
|
|
note: required because it appears within the type `S<X>`
|
|
|
|
--> $DIR/unsized3.rs:28:8
|
|
|
|
|
|
|
|
|
LL | struct S<X: ?Sized> {
|
|
|
|
| ^
|
2018-08-08 12:28:26 +00:00
|
|
|
= note: only the last element of a tuple may have a dynamically sized type
|
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 f9<X: ?Sized>(x1: Box<S<X>>) {
|
|
|
|
LL + fn f9<X>(x1: Box<S<X>>) {
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2022-06-29 02:32:12 +00:00
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
|
|
|
--> $DIR/unsized3.rs:45:9
|
|
|
|
|
|
|
|
|
LL | fn f10<X: ?Sized>(x1: Box<S<X>>) {
|
2023-06-14 17:22:03 +00:00
|
|
|
| - this type parameter needs to be `Sized`
|
2022-06-29 02:32:12 +00:00
|
|
|
LL | f5(&(32, *x1));
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^^^^^^^ doesn't have a size known at compile-time
|
2022-06-29 02:32:12 +00:00
|
|
|
|
|
|
|
|
note: required because it appears within the type `S<X>`
|
|
|
|
--> $DIR/unsized3.rs:28:8
|
|
|
|
|
|
|
|
|
LL | struct S<X: ?Sized> {
|
|
|
|
| ^
|
|
|
|
= note: required because it appears within the type `({integer}, S<X>)`
|
|
|
|
= note: tuples must have a statically known size to be initialized
|
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
|
|
|
LL - fn f10<X: ?Sized>(x1: Box<S<X>>) {
|
|
|
|
LL + fn f10<X>(x1: Box<S<X>>) {
|
|
|
|
|
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2019-09-16 04:58:20 +00:00
|
|
|
--> $DIR/unsized3.rs:45:8
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-10-07 21:23:56 +00:00
|
|
|
LL | fn f10<X: ?Sized>(x1: Box<S<X>>) {
|
2023-06-14 17:22:03 +00:00
|
|
|
| - this type parameter needs to be `Sized`
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | f5(&(32, *x1));
|
2021-09-07 11:30:53 +00:00
|
|
|
| -- ^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-03-30 20:37:30 +00:00
|
|
|
note: required because it appears within the type `S<X>`
|
|
|
|
--> $DIR/unsized3.rs:28:8
|
|
|
|
|
|
|
|
|
LL | struct S<X: ?Sized> {
|
|
|
|
| ^
|
2018-08-08 12:28:26 +00:00
|
|
|
= note: required because it appears within the type `({integer}, S<X>)`
|
2022-06-29 02:32:12 +00:00
|
|
|
note: required by a bound in `f5`
|
|
|
|
--> $DIR/unsized3.rs:24:7
|
|
|
|
|
|
|
|
|
LL | fn f5<Y>(x: &Y) {}
|
|
|
|
| ^ required by this bound in `f5`
|
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 f10<X: ?Sized>(x1: Box<S<X>>) {
|
|
|
|
LL + fn f10<X>(x1: Box<S<X>>) {
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2022-06-29 02:32:12 +00:00
|
|
|
help: consider relaxing the implicit `Sized` restriction
|
|
|
|
|
|
|
|
|
LL | fn f5<Y: ?Sized>(x: &Y) {}
|
|
|
|
| ++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2022-06-29 02:32:12 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|