rust/tests/ui/crashes/ice-5223.rs

19 lines
422 B
Rust
Raw Normal View History

2020-03-03 13:39:45 +01:00
// 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() {}