mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
d56cdd48cb
Update tests
29 lines
1.5 KiB
Plaintext
29 lines
1.5 KiB
Plaintext
warning: mutable reference of mutable static is discouraged
|
|
--> $DIR/static_mut_containing_mut_ref2.rs:8:6
|
|
|
|
|
LL | *(&mut STDERR_BUFFER_SPACE) = 42;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference of mutable static
|
|
|
|
|
= note: for more information, see issue #114447 <https://github.com/rust-lang/rust/issues/114447>
|
|
= note: reference of mutable static is a hard error from 2024 edition
|
|
= note: mutable statics can be written to by multiple threads: aliasing violations or data races will cause undefined behavior
|
|
= note: `#[warn(static_mut_ref)]` on by default
|
|
help: mutable references are dangerous since if there's any other pointer or reference used for that static while the reference lives, that's UB; use `addr_of_mut!` instead to create a raw pointer
|
|
|
|
|
LL | *addr_of_mut!(STDERR_BUFFER_SPACE) = 42;
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error[E0658]: mutable references are not allowed in statics
|
|
--> $DIR/static_mut_containing_mut_ref2.rs:8:6
|
|
|
|
|
LL | *(&mut STDERR_BUFFER_SPACE) = 42;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
|
|
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error: aborting due to 1 previous error; 1 warning emitted
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|