mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 10:18:20 +00:00
11 lines
189 B
Rust
11 lines
189 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::redundant_slicing)]
|
|
|
|
fn main() {
|
|
let x: &[u32] = &[0];
|
|
let err = &x[..];
|
|
|
|
let v = vec![0];
|
|
let ok = &v[..];
|
|
let err = &(&v[..])[..];
|
|
}
|