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`.
14 lines
387 B
Rust
14 lines
387 B
Rust
//@ revisions: stock mut_refs
|
|
#![allow(static_mut_refs)]
|
|
#![cfg_attr(mut_refs, feature(const_mut_refs))]
|
|
|
|
static mut STDERR_BUFFER_SPACE: u8 = 0;
|
|
|
|
pub static mut STDERR_BUFFER: () = unsafe {
|
|
*(&mut STDERR_BUFFER_SPACE) = 42;
|
|
//[mut_refs]~^ ERROR could not evaluate static initializer
|
|
//[stock]~^^ ERROR mutation through a reference is not allowed in statics
|
|
};
|
|
|
|
fn main() {}
|