mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 11:34:11 +00:00
12 lines
408 B
Plaintext
12 lines
408 B
Plaintext
|
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
|
||
|
--> $DIR/offset-of-dst-field.rs:13:5
|
||
|
|
|
||
|
LL | offset_of!(Foo, slice);
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
||
|
|
|
||
|
= help: the trait `Sized` is not implemented for `[u8]`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0277`.
|