rust/src/test/ui/issues/issue-54348.stderr
2019-12-21 22:16:00 +01:00

17 lines
397 B
Plaintext

error: index out of bounds: the len is 1 but the index is 1
--> $DIR/issue-54348.rs:5:5
|
LL | [1][1.5 as usize];
| ^^^^^^^^^^^^^^^^^
|
= note: `#[deny(const_err)]` on by default
error: index out of bounds: the len is 1 but the index is 1
--> $DIR/issue-54348.rs:6:5
|
LL | [1][1u64 as usize];
| ^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors