2021-01-16 18:05:51 +00:00
|
|
|
error[E0764]: mutable references are not allowed in the final value of statics
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/check-static-immutable-mut-slices.rs:3:37
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | static TEST: &'static mut [isize] = &mut [];
|
2021-01-03 18:46:20 +00:00
|
|
|
| ^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-06-18 14:52:37 -05:00
|
|
|
For more information about this error, try `rustc --explain E0764`.
|