2018-11-14 12:54:32 -05:00
|
|
|
error: index out of bounds: the len is 1 but the index is 1
|
2019-12-14 04:28:32 +01:00
|
|
|
--> $DIR/issue-54348.rs:5:5
|
2018-11-14 12:54:32 -05:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | [1][1.5 as usize];
|
2018-11-14 12:54:32 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-07-16 22:17:38 +02:00
|
|
|
= note: `#[deny(const_err)]` on by default
|
2018-11-14 12:54:32 -05:00
|
|
|
|
|
|
|
error: index out of bounds: the len is 1 but the index is 1
|
2019-12-14 04:28:32 +01:00
|
|
|
--> $DIR/issue-54348.rs:6:5
|
2018-11-14 12:54:32 -05:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | [1][1u64 as usize];
|
2018-11-14 12:54:32 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2019-12-01 12:08:05 +01:00
|
|
|
error: aborting due to 2 previous errors
|
2018-11-14 12:54:32 -05:00
|
|
|
|