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
Copy file name to clipboardexpand all lines: tests/ui/consts/const-address-of-mut.stderr
+2-12
Original file line number
Diff line number
Diff line change
@@ -18,18 +18,8 @@ LL | static B: () = { let mut x = 2; &raw mut x; };
18
18
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
19
19
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
20
20
21
-
error[E0658]: raw mutable pointers are not allowed in statics
22
-
--> $DIR/const-address-of-mut.rs:7:37
23
-
|
24
-
LL | static mut C: () = { let mut x = 2; &raw mut x; };
25
-
| ^^^^^^^^^^
26
-
|
27
-
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
28
-
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
29
-
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
30
-
31
21
error[E0658]: raw mutable pointers are not allowed in constant functions
32
-
--> $DIR/const-address-of-mut.rs:11:13
22
+
--> $DIR/const-address-of-mut.rs:9:13
33
23
|
34
24
LL | let y = &raw mut x;
35
25
| ^^^^^^^^^^
@@ -38,6 +28,6 @@ LL | let y = &raw mut x;
38
28
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
39
29
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
40
30
41
-
error: aborting due to 4 previous errors
31
+
error: aborting due to 3 previous errors
42
32
43
33
For more information about this error, try `rustc --explain E0658`.
Copy file name to clipboardexpand all lines: tests/ui/consts/static_mut_containing_mut_ref2.stock.stderr
+3-3
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,11 @@ help: mutable references are dangerous since if there's any other pointer or ref
13
13
LL | *addr_of_mut!(STDERR_BUFFER_SPACE) = 42;
14
14
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15
15
16
-
error[E0658]: mutable references are not allowed in statics
17
-
--> $DIR/static_mut_containing_mut_ref2.rs:8:6
16
+
error[E0658]: mutation through a reference is not allowed in statics
17
+
--> $DIR/static_mut_containing_mut_ref2.rs:8:5
18
18
|
19
19
LL | *(&mut STDERR_BUFFER_SPACE) = 42;
20
-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
20
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21
21
|
22
22
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
23
23
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
0 commit comments