Rebase fallout
This commit is contained in:
parent
8a74be6684
commit
14d08e5371
2 changed files with 12 additions and 3 deletions
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
static FOO: i32 = [][0];
|
static FOO: i32 = [][0];
|
||||||
//~^ ERROR E0080
|
//~^ ERROR E0080
|
||||||
|
//~| ERROR E0080
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let array = [std::env::args().len()];
|
let array = [std::env::args().len()];
|
||||||
|
|
|
@ -1,17 +1,25 @@
|
||||||
error[E0080]: constant evaluation error
|
error[E0080]: could not evaluate static initializer
|
||||||
--> $DIR/index_out_of_bounds.rs:11:19
|
--> $DIR/index_out_of_bounds.rs:11:19
|
||||||
|
|
|
|
||||||
LL | static FOO: i32 = [][0];
|
LL | static FOO: i32 = [][0];
|
||||||
| ^^^^^ index out of bounds: the len is 0 but the index is 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
|
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
|
LL | array[1]; //~ ERROR index out of bounds
|
||||||
| ^^^^^^^^
|
| ^^^^^^^^
|
||||||
|
|
|
|
||||||
= note: #[deny(const_err)] on by default
|
= 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`.
|
For more information about this error, try `rustc --explain E0080`.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue