]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/issues/issue-61336-2.stderr
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / 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`.