rust/tests/ui/consts/static_mut_containing_mut_ref2.mut_refs.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
452 B
Plaintext
Raw Normal View History

error[E0080]: could not evaluate static initializer
--> $DIR/static_mut_containing_mut_ref2.rs:7:45
2019-11-28 10:57:34 -06:00
|
LL | pub static mut STDERR_BUFFER: () = unsafe { *(&mut STDERR_BUFFER_SPACE) = 42; };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ modifying a static's initial value from another static's initializer
2019-11-28 10:57:34 -06:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0080`.