blob: 2ee1ac2d4d07b9919752153cc7b73d38d637f644 [file] [log] [blame]
error[E0017]: references in statics may only refer to immutable values
--> $DIR/issue-46604.rs:4:25
|
LL | static buf: &mut [u8] = &mut [1u8,2,3,4,5,7];
| ^^^^^^^^^^^^^^^^^^^^ statics require immutable values
error[E0389]: cannot assign to data in a `&` reference
--> $DIR/issue-46604.rs:10:5
|
LL | buf[0]=2;
| ^^^^^^^^ assignment into an immutable reference
error: aborting due to 2 previous errors
Some errors occurred: E0017, E0389.
For more information about an error, try `rustc --explain E0017`.