mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 17:48:10 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
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() {}
|