Rebase fallout

This commit is contained in:
Oliver Schneider 2018-06-05 21:08:43 +02:00
parent 8a74be6684
commit 14d08e5371
2 changed files with 12 additions and 3 deletions

View File

@ -10,6 +10,7 @@
static FOO: i32 = [][0];
//~^ ERROR E0080
//~| ERROR E0080
fn main() {
let array = [std::env::args().len()];

View File

@ -1,17 +1,25 @@
error[E0080]: constant evaluation error
error[E0080]: could not evaluate static initializer
--> $DIR/index_out_of_bounds.rs:11:19
|
LL | static FOO: i32 = [][0];
| ^^^^^ index out of bounds: the len is 0 but the index is 0
error[E0080]: could not evaluate static initializer
--> $DIR/index_out_of_bounds.rs:11:1
|
LL | static FOO: i32 = [][0];
| ^^^^^^^^^^^^^^^^^^-----^
| |
| index out of bounds: the len is 0 but the index is 0
error: index out of bounds: the len is 1 but the index is 1
--> $DIR/index_out_of_bounds.rs:16:5
--> $DIR/index_out_of_bounds.rs:17:5
|
LL | array[1]; //~ ERROR index out of bounds
| ^^^^^^^^
|
= note: #[deny(const_err)] on by default
error: aborting due to 2 previous errors
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0080`.