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