1
- error[E0658 ]: `& raw mut` is not allowed in constants
1
+ error[E0764 ]: raw mutable references are not allowed in constants
2
2
--> $DIR/const-address-of-mut.rs:3:32
3
3
|
4
4
LL | const A: () = { let mut x = 2; &raw mut x; };
5
- | ^^^^^^^^^^
6
- |
7
- = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
8
- = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
5
+ | ^^^^^^^^^^ `&raw mut` is only allowed in `const fn`
9
6
10
- error[E0658 ]: `& raw mut` is not allowed in statics
7
+ error[E0764 ]: raw mutable references are not allowed in statics
11
8
--> $DIR/const-address-of-mut.rs:5:33
12
9
|
13
10
LL | static B: () = { let mut x = 2; &raw mut x; };
14
- | ^^^^^^^^^^
15
- |
16
- = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
17
- = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
11
+ | ^^^^^^^^^^ `&raw mut` is only allowed in `const fn`
18
12
19
- error[E0658 ]: `& raw mut` is not allowed in statics
13
+ error[E0764 ]: raw mutable references are not allowed in statics
20
14
--> $DIR/const-address-of-mut.rs:7:37
21
15
|
22
16
LL | static mut C: () = { let mut x = 2; &raw mut x; };
23
- | ^^^^^^^^^^
24
- |
25
- = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
26
- = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
17
+ | ^^^^^^^^^^ `&raw mut` is only allowed in `const fn`
27
18
28
- error[E0658]: `& raw mut` is not allowed in constant functions
19
+ error[E0658]: raw mutable references are not allowed in constant functions
29
20
--> $DIR/const-address-of-mut.rs:11:13
30
21
|
31
22
LL | let y = &raw mut x;
@@ -36,4 +27,5 @@ LL | let y = &raw mut x;
36
27
37
28
error: aborting due to 4 previous errors
38
29
39
- For more information about this error, try `rustc --explain E0658`.
30
+ Some errors have detailed explanations: E0658, E0764.
31
+ For more information about an error, try `rustc --explain E0658`.
0 commit comments