Skip to content

Commit

Permalink
Rebase fallout
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Jun 5, 2018
1 parent 8a74be6 commit 14d08e5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/test/ui/const-eval/index_out_of_bounds.rs
Expand Up @@ -10,6 +10,7 @@

static FOO: i32 = [][0];
//~^ ERROR E0080
//~| ERROR E0080

fn main() {
let array = [std::env::args().len()];
Expand Down
14 changes: 11 additions & 3 deletions src/test/ui/const-eval/index_out_of_bounds.stderr
@@ -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`.

0 comments on commit 14d08e5

Please sign in to comment.