]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/consts/const-err.stderr
Shorten def_span for more items.
[rust.git] / src / test / ui / consts / const-err.stderr
index 0c963874a84963dbb23e64a6d0fb32166f8db858..e3b0d29c853241dffead0933d1e2ab8cc611d598 100644 (file)
@@ -2,9 +2,7 @@ warning: any use of this value will cause an error
   --> $DIR/const-err.rs:11:17
    |
 LL | const FOO: u8 = [5u8][1];
-   | ----------------^^^^^^^^-
-   |                 |
-   |                 index out of bounds: the length is 1 but the index is 1
+   | -------------   ^^^^^^^^ index out of bounds: the length is 1 but the index is 1
    |
 note: the lint level is defined here
   --> $DIR/const-err.rs:5:9
@@ -29,3 +27,18 @@ LL |     black_box((FOO, FOO));
 error: aborting due to 2 previous errors; 1 warning emitted
 
 For more information about this error, try `rustc --explain E0080`.
+Future incompatibility report: Future breakage diagnostic:
+warning: any use of this value will cause an error
+  --> $DIR/const-err.rs:11:17
+   |
+LL | const FOO: u8 = [5u8][1];
+   | -------------   ^^^^^^^^ index out of bounds: the length is 1 but the index is 1
+   |
+note: the lint level is defined here
+  --> $DIR/const-err.rs:5:9
+   |
+LL | #![warn(const_err)]
+   |         ^^^^^^^^^
+   = 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>
+