]> git.lizzy.rs Git - rust.git/blob - src/test/ui/check-static-immutable-mut-slices.stderr
Rollup merge of #67102 - Aaron1011:patch-3, r=Mark-Simulacrum
[rust.git] / src / test / ui / check-static-immutable-mut-slices.stderr
1 error[E0658]: references in statics may only refer to immutable values
2   --> $DIR/check-static-immutable-mut-slices.rs:3:37
3    |
4 LL | static TEST: &'static mut [isize] = &mut [];
5    |                                     ^^^^^^^ statics require immutable values
6    |
7    = note: for more information, see https://github.com/rust-lang/rust/issues/57349
8    = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0658`.