]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-mut-refs/issue-76510.32bit.stderr
Auto merge of #91403 - cjgillot:inherit-async, r=oli-obk
[rust.git] / src / test / ui / consts / const-mut-refs / issue-76510.32bit.stderr
1 error[E0764]: mutable references are not allowed in the final value of constants
2   --> $DIR/issue-76510.rs:5:29
3    |
4 LL | const S: &'static mut str = &mut " hello ";
5    |                             ^^^^^^^^^^^^^^
6
7 error[E0658]: mutation through a reference is not allowed in constants
8   --> $DIR/issue-76510.rs:5:29
9    |
10 LL | const S: &'static mut str = &mut " hello ";
11    |                             ^^^^^^^^^^^^^^
12    |
13    = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
14    = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
15
16 error[E0596]: cannot borrow data in a `&` reference as mutable
17   --> $DIR/issue-76510.rs:5:29
18    |
19 LL | const S: &'static mut str = &mut " hello ";
20    |                             ^^^^^^^^^^^^^^ cannot borrow as mutable
21
22 error: aborting due to 3 previous errors
23
24 Some errors have detailed explanations: E0596, E0658, E0764.
25 For more information about an error, try `rustc --explain E0596`.