]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-28324.stderr
Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1' into sync_cg_clif-2021-03-29
[rust.git] / src / test / ui / issues / issue-28324.stderr
1 error[E0133]: use of extern static is unsafe and requires unsafe function or block
2   --> $DIR/issue-28324.rs:5:24
3    |
4 LL | pub static BAZ: u32 = *&error_message_count;
5    |                        ^^^^^^^^^^^^^^^^^^^^ use of extern static
6    |
7    = note: extern statics are not controlled by the Rust type system: invalid data, aliasing violations or data races will cause undefined behavior
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0133`.