mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
18 lines
422 B
Rust
18 lines
422 B
Rust
// Regression test for #5233
|
|
|
|
#![feature(const_generics)]
|
|
#![allow(incomplete_features)]
|
|
#![warn(clippy::indexing_slicing, clippy::iter_cloned_collect)]
|
|
|
|
pub struct KotomineArray<T, const N: usize> {
|
|
arr: [T; N],
|
|
}
|
|
|
|
impl<T: std::clone::Clone, const N: usize> KotomineArray<T, N> {
|
|
pub fn ice(self) {
|
|
let _ = self.arr[..];
|
|
let _ = self.arr.iter().cloned().collect::<Vec<_>>();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|