2021-01-03 18:46:20 +00:00
|
|
|
error[E0080]: could not evaluate static initializer
|
2024-08-17 14:19:34 +02:00
|
|
|
--> $DIR/static_mut_containing_mut_ref2.rs:6:5
|
2019-11-28 11:57:34 -05:00
|
|
|
|
|
2023-12-22 15:12:01 +03:00
|
|
|
LL | *(&mut STDERR_BUFFER_SPACE) = 42;
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ modifying a static's initial value from another static's initializer
|
2019-11-28 11:57:34 -05:00
|
|
|
|
2024-02-12 15:14:58 +01:00
|
|
|
error: aborting due to 1 previous error
|
2019-11-28 11:57:34 -05:00
|
|
|
|
2021-01-03 18:46:20 +00:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|