You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: creating a shared reference to mutable static is discouraged
2
+
--> $DIR/static-mut-shared-parens.rs:8:22
3
+
|
4
+
LL | let _ = unsafe { (&TEST) as *const usize };
5
+
| ^^^^^^^ shared reference to mutable static
6
+
|
7
+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html>
8
+
= note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
9
+
= note: `#[warn(static_mut_refs)]` on by default
10
+
help: use `&raw const` instead to create a raw pointer
11
+
|
12
+
LL | let _ = unsafe { (&raw const TEST) as *const usize };
13
+
| ~~~~~~~~~~
14
+
15
+
warning: creating a mutable reference to mutable static is discouraged
16
+
--> $DIR/static-mut-shared-parens.rs:11:22
17
+
|
18
+
LL | let _ = unsafe { ((&mut TEST)) as *const usize };
19
+
| ^^^^^^^^^^^^^ mutable reference to mutable static
20
+
|
21
+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2024/static-mut-references.html>
22
+
= note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
23
+
help: use `&raw mut` instead to create a raw pointer
24
+
|
25
+
LL | let _ = unsafe { ((&raw mut TEST)) as *const usize };
0 commit comments