]> git.lizzy.rs Git - rust.git/blob - tests/ui/statics/issue-14227.mir.stderr
Optimize `TyKind::eq`.
[rust.git] / tests / ui / statics / issue-14227.mir.stderr
1 error[E0133]: use of extern static is unsafe and requires unsafe function or block
2   --> $DIR/issue-14227.rs:7:21
3    |
4 LL | static CRASH: u32 = symbol;
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`.