2018-08-08 14:28:26 +02:00
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized-struct.rs:6:36
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-08-24 14:44:43 -07:00
|
|
|
LL | struct Foo<T> { data: T }
|
2020-04-05 22:15:06 -07:00
|
|
|
| - required by this bound in `Foo`
|
2019-08-24 14:44:43 -07:00
|
|
|
LL | fn foo1<T>() { not_sized::<Foo<T>>() } // Hunky dory.
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | fn foo2<T: ?Sized>() { not_sized::<Foo<T>>() }
|
2020-02-02 02:03:54 -08:00
|
|
|
| - ^^^^^^ doesn't have a size known at compile-time
|
2019-10-07 14:23:56 -07:00
|
|
|
| |
|
2021-03-30 17:56:39 +08:00
|
|
|
| this type parameter needs to be `std::marker::Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-06-16 17:24:16 -07: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-03 21:41:18 -08:00
|
|
|
| ^ - ...if indirection were used here: `Box<T>`
|
2020-06-16 17:24:16 -07:00
|
|
|
| |
|
|
|
|
| this could be changed to `T: ?Sized`...
|
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 foo2<T: ?Sized>() { not_sized::<Foo<T>>() }
|
|
|
|
LL + fn foo2<T>() { not_sized::<Foo<T>>() }
|
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized-struct.rs:13:24
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-08-24 14:44:43 -07:00
|
|
|
LL | fn is_sized<T:Sized>() { }
|
2020-04-05 22:15:06 -07:00
|
|
|
| - required by this bound in `is_sized`
|
2019-08-24 14:44:43 -07:00
|
|
|
...
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | fn bar2<T: ?Sized>() { is_sized::<Bar<T>>() }
|
2020-02-02 02:03:54 -08:00
|
|
|
| - ^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2019-10-07 14:23:56 -07:00
|
|
|
| |
|
2021-03-30 17:56:39 +08:00
|
|
|
| this type parameter needs to be `std::marker::Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2021-03-30 13:37:30 -07: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-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 bar2<T: ?Sized>() { is_sized::<Bar<T>>() }
|
|
|
|
LL + fn bar2<T>() { is_sized::<Bar<T>>() }
|
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|