mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
408eeae59d
Rename `static_mut_ref` lint to `static_mut_refs`.
24 lines
423 B
Rust
24 lines
423 B
Rust
//@ check-pass
|
|
|
|
pub struct AA {
|
|
pub data: [u8; 10],
|
|
}
|
|
|
|
impl AA {
|
|
pub const fn new() -> Self {
|
|
let mut res: AA = AA { data: [0; 10] };
|
|
res.data[0] = 5;
|
|
res
|
|
}
|
|
}
|
|
|
|
static mut BB: AA = AA::new();
|
|
|
|
fn main() {
|
|
let ptr = unsafe { &mut BB };
|
|
//~^ WARN mutable reference to mutable static is discouraged [static_mut_refs]
|
|
for a in ptr.data.iter() {
|
|
println!("{}", a);
|
|
}
|
|
}
|