]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/write_to_mut_ref_dest.stock.stderr
Rollup merge of #98609 - TaKO8Ki:fix-ice-for-associated-constant-generics, r=lcnr
[rust.git] / src / test / ui / consts / write_to_mut_ref_dest.stock.stderr
1 error[E0658]: mutable references are not allowed in constants
2   --> $DIR/write_to_mut_ref_dest.rs:11:27
3    |
4 LL |         let b: *mut u32 = &mut a;
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]: dereferencing raw mutable pointers in constants is unstable
11   --> $DIR/write_to_mut_ref_dest.rs:12:18
12    |
13 LL |         unsafe { *b = 5; }
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: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0658`.