2020-02-15 10:47:27 +01:00
|
|
|
warning: this operation will panic at runtime
|
2020-01-18 00:34:33 +03:00
|
|
|
--> $DIR/array-literal-index-oob.rs:7:8
|
2019-06-06 12:23:17 -07:00
|
|
|
|
|
2020-01-08 21:31:08 +01:00
|
|
|
LL | &{ [1, 2, 3][4] };
|
2020-09-15 20:34:50 +01:00
|
|
|
| ^^^^^^^^^^^^ index out of bounds: the length is 3 but the index is 4
|
2019-06-06 12:23:17 -07:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2022-09-21 13:05:20 +02:00
|
|
|
--> $DIR/array-literal-index-oob.rs:4:9
|
2019-06-06 12:23:17 -07:00
|
|
|
|
|
2022-09-21 13:05:20 +02:00
|
|
|
LL | #![warn(unconditional_panic)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2019-06-06 12:23:17 -07:00
|
|
|
|
2021-01-01 14:47:45 +01:00
|
|
|
warning: 1 warning emitted
|
2020-03-11 16:30:09 +01:00
|
|
|
|