]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/static_mut_containing_mut_ref2.rs
Rollup merge of #64603 - gilescope:unused-lifetime-warning, r=matthewjasper
[rust.git] / src / test / ui / consts / static_mut_containing_mut_ref2.rs
1 static mut STDERR_BUFFER_SPACE: u8 = 0;
2
3 pub static mut STDERR_BUFFER: () = unsafe { *(&mut STDERR_BUFFER_SPACE) = 42; };
4 //~^ ERROR references in statics may only refer to immutable values
5 //~| ERROR static contains unimplemented expression type
6
7 fn main() {}