]> git.lizzy.rs Git - rust.git/commitdiff
bless missing tests
authorRalf Jung <post@ralfj.de>
Sat, 10 Jul 2021 11:03:35 +0000 (13:03 +0200)
committerRalf Jung <post@ralfj.de>
Sat, 10 Jul 2021 11:03:35 +0000 (13:03 +0200)
src/test/ui/issues/issue-18294.rs
src/test/ui/issues/issue-18294.stderr

index 1c2229fb9eae4f9258ff8505ba305130a2138ba5..77355f0d7c994423a142ceeb4cf87963def7cbcd 100644 (file)
@@ -1,5 +1,5 @@
 fn main() {
     const X: u32 = 1;
-    const Y: usize = unsafe { &X as *const u32 as usize }; //~ ERROR is unstable
+    const Y: usize = unsafe { &X as *const u32 as usize }; //~ ERROR pointers cannot be cast to integers
     println!("{}", Y);
 }
index 52df558bfce5e7c85628da8d428064524c581144..432e9a6518765d1e2848f8bc1003405d634a234b 100644 (file)
@@ -1,12 +1,11 @@
-error[E0658]: casting pointers to integers in constants is unstable
+error: pointers cannot be cast to integers during const eval.
   --> $DIR/issue-18294.rs:3:31
    |
 LL |     const Y: usize = unsafe { &X as *const u32 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`.