2020-12-31 16:10:13 +00:00
|
|
|
error: redundant slicing of the whole range
|
2022-01-04 01:35:32 +00:00
|
|
|
--> $DIR/redundant_slicing.rs:10:13
|
2020-12-31 16:10:13 +00:00
|
|
|
|
|
2022-01-03 20:25:00 +00:00
|
|
|
LL | let _ = &slice[..]; // Redundant slice
|
2021-03-26 02:30:14 +00:00
|
|
|
| ^^^^^^^^^^ help: use the original value instead: `slice`
|
2020-12-31 16:10:13 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::redundant-slicing` implied by `-D warnings`
|
|
|
|
|
2021-03-26 02:30:14 +00:00
|
|
|
error: redundant slicing of the whole range
|
2022-01-04 01:35:32 +00:00
|
|
|
--> $DIR/redundant_slicing.rs:14:13
|
2022-01-03 20:25:00 +00:00
|
|
|
|
|
|
|
|
LL | let _ = &(&*v)[..]; // Outer borrow is redundant
|
|
|
|
| ^^^^^^^^^^ help: use the original value instead: `(&*v)`
|
|
|
|
|
|
|
|
error: redundant slicing of the whole range
|
2022-01-04 01:35:32 +00:00
|
|
|
--> $DIR/redundant_slicing.rs:31:13
|
2021-03-26 02:30:14 +00:00
|
|
|
|
|
|
|
|
LL | let _ = &m!(slice)[..];
|
|
|
|
| ^^^^^^^^^^^^^^ help: use the original value instead: `slice`
|
|
|
|
|
2022-02-13 23:43:19 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2020-12-31 16:10:13 +00:00
|
|
|
|