mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
408eeae59d
Rename `static_mut_ref` lint to `static_mut_refs`.
18 lines
446 B
Rust
18 lines
446 B
Rust
//@ edition:2018
|
|
|
|
#![feature(thread_local)]
|
|
#![feature(const_swap)]
|
|
#![allow(static_mut_refs)]
|
|
|
|
#[thread_local]
|
|
static mut STATIC_VAR_2: [u32; 8] = [4; 8];
|
|
const fn g(x: &mut [u32; 8]) {
|
|
//~^ ERROR mutable references are not allowed
|
|
std::mem::swap(x, &mut STATIC_VAR_2)
|
|
//~^ ERROR thread-local statics cannot be accessed
|
|
//~| ERROR mutable references are not allowed
|
|
//~| ERROR use of mutable static is unsafe
|
|
}
|
|
|
|
fn main() {}
|