mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 10:18:20 +00:00
16 lines
500 B
Text
16 lines
500 B
Text
error: redundant slicing of the whole range
|
|
--> $DIR/redundant_slicing.rs:6:15
|
|
|
|
|
LL | let err = &x[..];
|
|
| ^^^^^^ help: use the original slice instead: `x`
|
|
|
|
|
= note: `-D clippy::redundant-slicing` implied by `-D warnings`
|
|
|
|
error: redundant slicing of the whole range
|
|
--> $DIR/redundant_slicing.rs:10:15
|
|
|
|
|
LL | let err = &(&v[..])[..];
|
|
| ^^^^^^^^^^^^^ help: use the original slice instead: `(&v[..])`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|