2018-10-11 16:02:00 +00:00
|
|
|
error[E0277]: the size for values of type `[i8]` cannot be known at compilation time
|
2018-10-14 15:45:35 +00:00
|
|
|
--> $DIR/issue-54410.rs:2:28
|
2018-10-11 16:02:00 +00:00
|
|
|
|
|
2018-10-14 15:45:35 +00:00
|
|
|
LL | pub static mut symbol: [i8];
|
|
|
|
| ^^^^ doesn't have a size known at compile-time
|
2018-10-11 16:02:00 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `[i8]`
|
2018-10-11 16:02:00 +00:00
|
|
|
|
2024-08-24 03:49:09 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-10-11 16:02:00 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|