2019-11-14 16:50:32 +09:00
|
|
|
fn main() {
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2019-11-14 16:50:32 +09:00
|
|
|
static symbol: [usize]; //~ ERROR: the size for values of type
|
|
|
|
|
}
|
|
|
|
|
println!("{}", symbol[0]);
|
2024-02-09 12:17:55 +00:00
|
|
|
//~^ ERROR: extern static is unsafe
|
2019-11-14 16:50:32 +09:00
|
|
|
}
|