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