Files
rust/tests/ui/consts/const-mut-refs/issue-76510.stderr

10 lines
324 B
Plaintext
Raw Normal View History

2021-06-14 08:17:11 +09:00
error[E0764]: mutable references are not allowed in the final value of constants
--> $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`.