blob: c93b296dbb557c8a3ce974278573351beeed0a7e [file] [log] [blame]
// build-pass
// revisions: full min
#![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
fn f<T: Copy, const N: usize>(x: T) -> [T; N] {
[x; N]
}
fn main() {
let x: [u32; 5] = f::<u32, 5>(3);
assert_eq!(x, [3u32; 5]);
}