blob: 316843889c683ae765112752fe4dfa9cc8d89acd (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0080]: could not evaluate static initializer
--> $DIR/const-deref-ptr.rs:4:29
|
LL | static C: u64 = unsafe {*(0xdeadbeef as *const u64)};
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 0xdeadbeef is not a valid pointer
error: aborting due to previous error
For more information about this error, try `rustc --explain E0080`.
|