summary refs log tree commit diff
path: root/src/test/ui/check-static-immutable-mut-slices.stderr
blob: 66fe8646e1016c53f621c3f490f7a94bd0d02bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0658]: references in statics may only refer to immutable values
  --> $DIR/check-static-immutable-mut-slices.rs:3:37
   |
LL | static TEST: &'static mut [isize] = &mut [];
   |                                     ^^^^^^^ statics require immutable values
   |
   = note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
   = help: add `#![feature(const_mut_refs)]` to the crate attributes to enable

error: aborting due to previous error

For more information about this error, try `rustc --explain E0658`.