]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/issues/issue-61336.min.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / const-generics / issues / issue-61336.min.stderr
1 error[E0277]: the trait bound `T: Copy` is not satisfied
2 --> $DIR/issue-61336.rs:10:5
3 |
4 LL | [x; N]
5 | ^^^^^^ the trait `Copy` is not implemented for `T`
6 |
7 = note: the `Copy` trait is required because the repeated element will be copied
8 help: consider restricting type parameter `T`
9 |
10 LL | fn g<T: Copy, const N: usize>(x: T) -> [T; N] {
11 | ^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.