blob: 3d0de233569c9f9606fd81a02e83e57cca2c6d00 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0080]: could not evaluate static initializer
--> $DIR/static_mut_containing_mut_ref2.rs:7:45
|
LL | pub static mut STDERR_BUFFER: () = unsafe { *(&mut STDERR_BUFFER_SPACE) = 42; };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ modifying a static's initial value from another static's initializer
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0080`.
|