]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-46604.stderr
Rollup merge of #67102 - Aaron1011:patch-3, r=Mark-Simulacrum
[rust.git] / src / test / ui / issues / issue-46604.stderr
1 error[E0658]: references in statics may only refer to immutable values
2   --> $DIR/issue-46604.rs:1:25
3    |
4 LL | static buf: &mut [u8] = &mut [1u8,2,3,4,5,7];
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[E0594]: cannot assign to `buf[_]`, as `buf` is an immutable static item
11   --> $DIR/issue-46604.rs:6:5
12    |
13 LL |     buf[0]=2;
14    |     ^^^^^^^^ cannot assign
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0594, E0658.
19 For more information about an error, try `rustc --explain E0594`.