2018-08-08 12:28:26 +00:00
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unsized-struct.rs:6:36
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | fn foo2<T: ?Sized>() { not_sized::<Foo<T>>() }
|
2020-02-02 10:03:54 +00:00
|
|
|
| - ^^^^^^ doesn't have a size known at compile-time
|
2019-10-07 21:23:56 +00:00
|
|
|
| |
|
2023-06-14 17:22:03 +00:00
|
|
|
| this type parameter needs to be `Sized`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2024-01-24 21:29:15 +00:00
|
|
|
note: required by an implicit `Sized` bound in `Foo`
|
2021-07-31 16:26:55 +00:00
|
|
|
--> $DIR/unsized-struct.rs:4:12
|
|
|
|
|
|
|
|
|
LL | struct Foo<T> { data: T }
|
2024-01-30 19:47:45 +00:00
|
|
|
| ^ required by the implicit `Sized` requirement on this type parameter in `Foo`
|
2020-06-17 00:24:16 +00:00
|
|
|
help: you could relax the implicit `Sized` bound on `T` if it were used through indirection like `&T` or `Box<T>`
|
|
|
|
--> $DIR/unsized-struct.rs:4:12
|
|
|
|
|
|
|
|
|
LL | struct Foo<T> { data: T }
|
2021-02-04 05:41:18 +00:00
|
|
|
| ^ - ...if indirection were used here: `Box<T>`
|
2020-06-17 00:24:16 +00:00
|
|
|
| |
|
|
|
|
| this could be changed to `T: ?Sized`...
|
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 foo2<T: ?Sized>() { not_sized::<Foo<T>>() }
|
|
|
|
LL + fn foo2<T>() { not_sized::<Foo<T>>() }
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
2022-08-16 06:27:22 +00:00
|
|
|
--> $DIR/unsized-struct.rs:13:35
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | fn bar2<T: ?Sized>() { is_sized::<Bar<T>>() }
|
2022-08-16 06:27:22 +00:00
|
|
|
| - ^^^^^^ doesn't have a size known at compile-time
|
2019-10-07 21:23:56 +00:00
|
|
|
| |
|
2023-06-14 17:22:03 +00:00
|
|
|
| this type parameter needs to be `Sized`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2021-03-30 20:37:30 +00:00
|
|
|
note: required because it appears within the type `Bar<T>`
|
|
|
|
--> $DIR/unsized-struct.rs:11:8
|
|
|
|
|
|
|
|
|
LL | struct Bar<T: ?Sized> { data: T }
|
|
|
|
| ^^^
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `is_sized`
|
2024-01-24 21:29:15 +00:00
|
|
|
--> $DIR/unsized-struct.rs:1:15
|
2021-07-31 16:26:55 +00:00
|
|
|
|
|
|
|
|
LL | fn is_sized<T:Sized>() { }
|
2024-01-24 21:29:15 +00:00
|
|
|
| ^^^^^ required by this bound in `is_sized`
|
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 bar2<T: ?Sized>() { is_sized::<Bar<T>>() }
|
|
|
|
LL + fn bar2<T>() { is_sized::<Bar<T>>() }
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|