]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/issue-61336.rs
Rollup merge of #61698 - davidtwco:ice-const-generic-length, r=varkor
[rust.git] / src / test / ui / const-generics / issue-61336.rs
1 #![feature(const_generics)]
2 //~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
3
4 fn f<T: Copy, const N: usize>(x: T) -> [T; N] {
5     [x; N]
6 }
7
8 fn g<T, const N: usize>(x: T) -> [T; N] {
9     [x; N]
10     //~^ ERROR the trait bound `T: std::marker::Copy` is not satisfied [E0277]
11 }
12
13 fn main() {
14     let x: [u32; 5] = f::<u32, 5>(3);
15     assert_eq!(x, [3u32; 5]);
16 }