]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-multi-ref.stderr
Rollup merge of #106951 - tmiasko:rm-simplify-initial, r=oli-obk
[rust.git] / tests / ui / consts / const-multi-ref.stderr
1 error[E0658]: mutable references are not allowed in constants
2   --> $DIR/const-multi-ref.rs:6:13
3    |
4 LL |     let p = &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]: cannot borrow here, since the borrowed element may contain interior mutability
11   --> $DIR/const-multi-ref.rs:16:13
12    |
13 LL |     let p = &a;
14    |             ^^
15    |
16    = note: see issue #80384 <https://github.com/rust-lang/rust/issues/80384> for more information
17    = help: add `#![feature(const_refs_to_cell)]` 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`.