2018-06-05 21:08:43 +02:00
|
|
|
error[E0080]: could not evaluate static initializer
|
2018-06-03 20:57:45 +02:00
|
|
|
--> $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: index out of bounds: the len is 1 but the index is 1
|
2018-07-03 12:03:47 +02:00
|
|
|
--> $DIR/index_out_of_bounds.rs:16:5
|
2018-06-03 20:57:45 +02:00
|
|
|
|
|
|
|
|
LL | array[1]; //~ ERROR index out of bounds
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: #[deny(const_err)] on by default
|
|
|
|
|
2018-07-03 12:03:47 +02:00
|
|
|
error: aborting due to 2 previous errors
|
2018-06-03 20:57:45 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|