]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/consts/const-eval/index-out-of-bounds-never-type.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / index-out-of-bounds-never-type.stderr
index 73664fa49d189e8ee7d49d8cdc8d395a26bc01b3..da4a21e08ab177ac103738abdf3c46ba818f4664 100644 (file)
@@ -2,9 +2,7 @@ warning: any use of this value will cause an error
   --> $DIR/index-out-of-bounds-never-type.rs:10:61
    |
 LL |     const VOID: ! = { let x = 0 * std::mem::size_of::<T>(); [][x] };
-   |     --------------------------------------------------------^^^^^---
-   |                                                             |
-   |                                                             index out of bounds: the length is 0 but the index is 0
+   |     -------------                                           ^^^^^ index out of bounds: the length is 0 but the index is 0
    |
 note: the lint level is defined here
   --> $DIR/index-out-of-bounds-never-type.rs:4:9
@@ -22,3 +20,18 @@ LL |     let _ = PrintName::<T>::VOID;
 
 error: aborting due to previous error; 1 warning emitted
 
+Future incompatibility report: Future breakage diagnostic:
+warning: any use of this value will cause an error
+  --> $DIR/index-out-of-bounds-never-type.rs:10:61
+   |
+LL |     const VOID: ! = { let x = 0 * std::mem::size_of::<T>(); [][x] };
+   |     -------------                                           ^^^^^ index out of bounds: the length is 0 but the index is 0
+   |
+note: the lint level is defined here
+  --> $DIR/index-out-of-bounds-never-type.rs:4:9
+   |
+LL | #![warn(const_err, unconditional_panic)]
+   |         ^^^^^^^^^
+   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
+   = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
+