2018-10-24 22:10:17 +09:00
|
|
|
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
|
2025-02-27 08:21:47 +00:00
|
|
|
--> $DIR/unsized-exprs.rs:19:22
|
2018-10-24 22:10:17 +09:00
|
|
|
|
|
|
|
|
|
LL | udrop::<A<[u8]>>(A { 0: *foo() });
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2018-10-24 22:10:17 +09:00
|
|
|
|
|
2024-10-24 21:14:17 +00:00
|
|
|
= help: within `A<[u8]>`, the trait `Sized` is not implemented for `[u8]`
|
2021-03-30 13:37:30 -07:00
|
|
|
note: required because it appears within the type `A<[u8]>`
|
|
|
|
|
--> $DIR/unsized-exprs.rs:3:8
|
|
|
|
|
|
|
|
|
|
|
LL | struct A<X: ?Sized>(X);
|
|
|
|
|
| ^
|
2018-10-24 22:10:17 +09:00
|
|
|
= note: structs must have a statically known size to be initialized
|
|
|
|
|
|
2018-11-19 00:18:13 +09:00
|
|
|
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
|
2025-02-27 08:21:47 +00:00
|
|
|
--> $DIR/unsized-exprs.rs:21:22
|
2018-11-19 00:18:13 +09:00
|
|
|
|
|
|
|
|
|
LL | udrop::<A<[u8]>>(A(*foo()));
|
2024-01-24 02:52:29 +00:00
|
|
|
| ^^^^^^^^^ doesn't have a size known at compile-time
|
2018-11-19 00:18:13 +09:00
|
|
|
|
|
2024-10-24 21:14:17 +00:00
|
|
|
= help: within `A<[u8]>`, the trait `Sized` is not implemented for `[u8]`
|
2021-03-30 13:37:30 -07:00
|
|
|
note: required because it appears within the type `A<[u8]>`
|
|
|
|
|
--> $DIR/unsized-exprs.rs:3:8
|
|
|
|
|
|
|
|
|
|
|
LL | struct A<X: ?Sized>(X);
|
|
|
|
|
| ^
|
2018-11-19 00:18:13 +09:00
|
|
|
= note: the return type of a function must have a statically known size
|
|
|
|
|
|
2025-02-27 08:21:47 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-10-24 22:10:17 +09:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|