Files
rust/tests/ui/unsized-locals/unsized-exprs.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.2 KiB
Plaintext
Raw Normal View History

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
|
LL | udrop::<A<[u8]>>(A { 0: *foo() });
2022-08-16 06:27:22 +00:00
| ^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
= help: within `A<[u8]>`, the trait `Sized` is not implemented for `[u8]`
note: required because it appears within the type `A<[u8]>`
--> $DIR/unsized-exprs.rs:3:8
|
LL | struct A<X: ?Sized>(X);
| ^
= note: structs must have a statically known size to be initialized
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
|
LL | udrop::<A<[u8]>>(A(*foo()));
| ^^^^^^^^^ doesn't have a size known at compile-time
|
= help: within `A<[u8]>`, the trait `Sized` is not implemented for `[u8]`
note: required because it appears within the type `A<[u8]>`
--> $DIR/unsized-exprs.rs:3:8
|
LL | struct A<X: ?Sized>(X);
| ^
= 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
For more information about this error, try `rustc --explain E0277`.