]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/issues/issue-61336-2.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / const-generics / issues / issue-61336-2.stderr
1 error[E0277]: the trait bound `T: Copy` is not satisfied
2 --> $DIR/issue-61336-2.rs:6:6
3 |
4 LL | [x; { N }]
5 | ^ the trait `Copy` is not implemented for `T`
6 |
7 = note: the `Copy` trait is required because this value will be copied for each element of the array
8 help: consider restricting type parameter `T`
9 |
10 LL | fn g<T: std::marker::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`.