2021-06-14 08:17:11 +09:00
|
|
|
error[E0764]: mutable references are not allowed in the final value of constants
|
2024-02-16 10:01:43 +01:00
|
|
|
--> $DIR/issue-76510.rs:3:29
|
2021-06-14 08:17:11 +09:00
|
|
|
|
|
|
|
|
|
LL | const S: &'static mut str = &mut " hello ";
|
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2024-08-17 14:19:34 +02:00
|
|
|
error: aborting due to 1 previous error
|
2021-06-14 08:17:11 +09:00
|
|
|
|
2024-08-17 14:19:34 +02:00
|
|
|
For more information about this error, try `rustc --explain E0764`.
|