2018-10-11 16:02:00 +00:00
|
|
|
extern "C" {
|
2018-10-14 15:45:35 +00:00
|
|
|
pub static mut symbol: [i8];
|
2018-10-11 16:02:00 +00:00
|
|
|
//~^ ERROR the size for values of type `[i8]` cannot be known at compilation time
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("{:p}", unsafe { &symbol });
|
|
|
|
}
|