rust/tests/ui/consts/const-deref-ptr.stderr

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

10 lines
419 B
Plaintext
Raw Normal View History

error[E0080]: could not evaluate static initializer
2018-12-25 15:56:47 +00:00
--> $DIR/const-deref-ptr.rs:4:29
|
LL | static C: u64 = unsafe {*(0xdeadbeef as *const u64)};
2022-07-03 19:46:22 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ dereferencing pointer failed: 0xdeadbeef[noalloc] is a dangling pointer (it has no provenance)
error: aborting due to previous error
For more information about this error, try `rustc --explain E0080`.