]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-address-of-mut.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / consts / const-address-of-mut.stderr
CommitLineData
5869c6ff 1error[E0658]: raw mutable references are not allowed in constants
dfeec247
XL
2 --> $DIR/const-address-of-mut.rs:3:32
3 |
4LL | const A: () = { let mut x = 2; &raw mut x; };
5869c6ff
XL
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
dfeec247 9
5869c6ff 10error[E0658]: raw mutable references are not allowed in statics
dfeec247
XL
11 --> $DIR/const-address-of-mut.rs:5:33
12 |
13LL | static B: () = { let mut x = 2; &raw mut x; };
5869c6ff
XL
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
dfeec247 18
5869c6ff 19error[E0658]: raw mutable references are not allowed in statics
dfeec247
XL
20 --> $DIR/const-address-of-mut.rs:7:37
21 |
22LL | static mut C: () = { let mut x = 2; &raw mut x; };
5869c6ff
XL
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
dfeec247 27
29967ef6 28error[E0658]: raw mutable references are not allowed in constant functions
dfeec247
XL
29 --> $DIR/const-address-of-mut.rs:11:13
30 |
31LL | let y = &raw mut x;
32 | ^^^^^^^^^^
33 |
74b04a01 34 = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
dfeec247
XL
35 = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
36
37error: aborting due to 4 previous errors
38
5869c6ff 39For more information about this error, try `rustc --explain E0658`.