rust/tests/ui/issues/issue-54410.rs
2023-01-11 09:32:08 +00:00

9 lines
191 B
Rust

extern "C" {
pub static mut symbol: [i8];
//~^ ERROR the size for values of type `[i8]` cannot be known at compilation time
}
fn main() {
println!("{:p}", unsafe { &symbol });
}