]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-52023-array-size-pointer-cast.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-52023-array-size-pointer-cast.stderr
index a4c228416147e6d2a634e513d8e79b2212f04d03..f687be5edb0914ad2cbf876655f93956d4df4100 100644 (file)
@@ -1,5 +1,5 @@
 error[E0658]: casting pointers to integers in constants is unstable (see issue #51910)
-  --> $DIR/issue-52023-array-size-pointer-cast.rs:12:17
+  --> $DIR/issue-52023-array-size-pointer-cast.rs:2:17
    |
 LL |     let _ = [0; (&0 as *const i32) as usize]; //~ ERROR casting pointers to integers in constants
    |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -7,7 +7,7 @@ LL |     let _ = [0; (&0 as *const i32) as usize]; //~ ERROR casting pointers to
    = help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
 
 error[E0080]: it is undefined behavior to use this value
-  --> $DIR/issue-52023-array-size-pointer-cast.rs:12:17
+  --> $DIR/issue-52023-array-size-pointer-cast.rs:2:17
    |
 LL |     let _ = [0; (&0 as *const i32) as usize]; //~ ERROR casting pointers to integers in constants
    |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered a pointer, but expected initialized plain (non-pointer) bytes