]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/consts/issue-17458.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / consts / issue-17458.stderr
index 68e86ea21bd963435501cf3df97b5083b236f530..aab7d798db2e7f663882befd9bbf10a7b0e4d34e 100644 (file)
@@ -1,12 +1,11 @@
-error[E0658]: casting pointers to integers in statics is unstable
+error: pointers cannot be cast to integers during const eval.
   --> $DIR/issue-17458.rs:1:28
    |
 LL | static X: usize = unsafe { core::ptr::null::<usize>() as usize };
    |                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
-   = note: see issue #51910 <https://github.com/rust-lang/rust/issues/51910> for more information
-   = help: add `#![feature(const_raw_ptr_to_usize_cast)]` to the crate attributes to enable
+   = note: at compile-time, pointers do not have an integer value
+   = note: avoiding this restriction via `transmute`, `union`, or raw pointers leads to compile-time undefined behavior
 
 error: aborting due to previous error
 
-For more information about this error, try `rustc --explain E0658`.