]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/array_const_index-1.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / array_const_index-1.stderr
index 5fcfc14e2c0d005a1680d86900a38ac6ff9dcf24..3e912fad53a5f310045590d6ec484a491deb8e95 100644 (file)
@@ -1,5 +1,5 @@
 error: any use of this value will cause an error
-  --> $DIR/array_const_index-1.rs:12:1
+  --> $DIR/array_const_index-1.rs:2:1
    |
 LL | const B: i32 = A[1];
    | ^^^^^^^^^^^^^^^----^
@@ -8,20 +8,5 @@ LL | const B: i32 = A[1];
    |
    = note: #[deny(const_err)] on by default
 
-error: any use of this value will cause an error
-  --> $DIR/array_const_index-1.rs:12:1
-   |
-LL | const B: i32 = A[1];
-   | ^^^^^^^^^^^^^^^----^
-   |                |
-   |                index out of bounds: the len is 0 but the index is 1
-
-error[E0080]: erroneous constant used
-  --> $DIR/array_const_index-1.rs:18:13
-   |
-LL |     let _ = B; //~ ERROR erroneous constant used
-   |             ^ referenced constant has errors
-
-error: aborting due to 3 previous errors
+error: aborting due to previous error
 
-For more information about this error, try `rustc --explain E0080`.