mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
14 lines
277 B
Rust
14 lines
277 B
Rust
#![feature(const_generics)]
|
|
#![allow(incomplete_features)]
|
|
|
|
pub struct ArrayWrapper<const N: usize>([usize; N]);
|
|
|
|
impl<const N: usize> ArrayWrapper<{ N }> {
|
|
pub fn ice(&self) {
|
|
for i in self.0.iter() {
|
|
println!("{}", i);
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|