mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
408eeae59d
Rename `static_mut_ref` lint to `static_mut_refs`.
10 lines
284 B
Rust
10 lines
284 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 });
|
|
//~^ WARN creating a shared reference to mutable static is discouraged [static_mut_refs]
|
|
}
|