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