rust/src/test/ui/const-generics/fn-taking-const-generic-array.rs
2020-05-09 14:40:17 +02:00

16 lines
287 B
Rust

// run-pass
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete
use std::fmt::Display;
fn print_slice<T: Display, const N: usize>(slice: &[T; N]) {
for x in slice.iter() {
println!("{}", x);
}
}
fn main() {
print_slice(&[1, 2, 3]);
}