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