error: indexing may panic. --> $DIR/indexing_slicing.rs:13:5 | 13 | x[index]; | ^^^^^^^^ | = note: `-D clippy::indexing-slicing` implied by `-D warnings` = help: Consider using `.get(n)` or `.get_mut(n)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:14:6 | 14 | &x[index..]; | ^^^^^^^^^^ | = help: Consider using `.get(n..)` or .get_mut(n..)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:15:6 | 15 | &x[..index]; | ^^^^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:16:6 | 16 | &x[index_from..index_to]; | ^^^^^^^^^^^^^^^^^^^^^^^ | = help: Consider using `.get(n..m)` or `.get_mut(n..m)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:17:6 | 17 | &x[index_from..][..index_to]; // Two lint reports, one for [index_from..] and another for [..index_to]. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:17:6 | 17 | &x[index_from..][..index_to]; // Two lint reports, one for [index_from..] and another for [..index_to]. | ^^^^^^^^^^^^^^^ | = help: Consider using `.get(n..)` or .get_mut(n..)` instead error: range is out of bounds --> $DIR/indexing_slicing.rs:20:6 | 20 | &x[..=4]; | ^^^^^^^ | = note: `-D clippy::out-of-bounds-indexing` implied by `-D warnings` error: range is out of bounds --> $DIR/indexing_slicing.rs:21:6 | 21 | &x[1..5]; | ^^^^^^^ error: slicing may panic. --> $DIR/indexing_slicing.rs:22:6 | 22 | &x[5..][..10]; // Two lint reports, one for [5..] and another for [..10]. | ^^^^^^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: range is out of bounds --> $DIR/indexing_slicing.rs:22:6 | 22 | &x[5..][..10]; // Two lint reports, one for [5..] and another for [..10]. | ^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:23:6 | 23 | &x[5..]; | ^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:24:6 | 24 | &x[..5]; | ^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:25:6 | 25 | &x[5..].iter().map(|x| 2 * x).collect::>(); | ^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:26:6 | 26 | &x[0..=4]; | ^^^^^^^^ error: slicing may panic. --> $DIR/indexing_slicing.rs:27:6 | 27 | &x[0..][..3]; | ^^^^^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:28:6 | 28 | &x[1..][..5]; | ^^^^^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: indexing may panic. --> $DIR/indexing_slicing.rs:41:5 | 41 | y[0]; | ^^^^ | = help: Consider using `.get(n)` or `.get_mut(n)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:42:6 | 42 | &y[1..2]; | ^^^^^^^ | = help: Consider using `.get(n..m)` or `.get_mut(n..m)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:43:6 | 43 | &y[0..=4]; | ^^^^^^^^ | = help: Consider using `.get(n..m)` or `.get_mut(n..m)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:44:6 | 44 | &y[..=4]; | ^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: range is out of bounds --> $DIR/indexing_slicing.rs:50:6 | 50 | &empty[1..5]; | ^^^^^^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:51:6 | 51 | &empty[0..=4]; | ^^^^^^^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:52:6 | 52 | &empty[..=4]; | ^^^^^^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:53:6 | 53 | &empty[1..]; | ^^^^^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:54:6 | 54 | &empty[..4]; | ^^^^^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:55:6 | 55 | &empty[0..=0]; | ^^^^^^^^^^^^ error: range is out of bounds --> $DIR/indexing_slicing.rs:56:6 | 56 | &empty[..=0]; | ^^^^^^^^^^^ error: indexing may panic. --> $DIR/indexing_slicing.rs:64:5 | 64 | v[0]; | ^^^^ | = help: Consider using `.get(n)` or `.get_mut(n)` instead error: indexing may panic. --> $DIR/indexing_slicing.rs:65:5 | 65 | v[10]; | ^^^^^ | = help: Consider using `.get(n)` or `.get_mut(n)` instead error: indexing may panic. --> $DIR/indexing_slicing.rs:66:5 | 66 | v[1 << 3]; | ^^^^^^^^^ | = help: Consider using `.get(n)` or `.get_mut(n)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:67:6 | 67 | &v[10..100]; | ^^^^^^^^^^ | = help: Consider using `.get(n..m)` or `.get_mut(n..m)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:68:6 | 68 | &x[10..][..100]; // Two lint reports, one for [10..] and another for [..100]. | ^^^^^^^^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: range is out of bounds --> $DIR/indexing_slicing.rs:68:6 | 68 | &x[10..][..100]; // Two lint reports, one for [10..] and another for [..100]. | ^^^^^^^ error: slicing may panic. --> $DIR/indexing_slicing.rs:69:6 | 69 | &v[10..]; | ^^^^^^^ | = help: Consider using `.get(n..)` or .get_mut(n..)` instead error: slicing may panic. --> $DIR/indexing_slicing.rs:70:6 | 70 | &v[..100]; | ^^^^^^^^ | = help: Consider using `.get(..n)`or `.get_mut(..n)` instead error: indexing may panic. --> $DIR/indexing_slicing.rs:82:5 | 82 | v[N]; | ^^^^ | = help: Consider using `.get(n)` or `.get_mut(n)` instead error: indexing may panic. --> $DIR/indexing_slicing.rs:83:5 | 83 | v[M]; | ^^^^ | = help: Consider using `.get(n)` or `.get_mut(n)` instead error: aborting due to 37 previous errors