]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-eval/index_out_of_bounds.stderr
828fba55a3afebc8b432e9fa6c36d7b18f531ded
[rust.git] / src / test / ui / const-eval / index_out_of_bounds.stderr
1 error[E0080]: could not evaluate static initializer
2   --> $DIR/index_out_of_bounds.rs:11:19
3    |
4 LL | static FOO: i32 = [][0];
5    |                   ^^^^^ index out of bounds: the len is 0 but the index is 0
6
7 error[E0080]: could not evaluate static initializer
8   --> $DIR/index_out_of_bounds.rs:11:1
9    |
10 LL | static FOO: i32 = [][0];
11    | ^^^^^^^^^^^^^^^^^^-----^
12    |                   |
13    |                   index out of bounds: the len is 0 but the index is 0
14
15 error: index out of bounds: the len is 1 but the index is 1
16   --> $DIR/index_out_of_bounds.rs:17:5
17    |
18 LL |     array[1]; //~ ERROR index out of bounds
19    |     ^^^^^^^^
20    |
21    = note: #[deny(const_err)] on by default
22
23 error: aborting due to 3 previous errors
24
25 For more information about this error, try `rustc --explain E0080`.