19 lines
901 B
Text
19 lines
901 B
Text
error[E0284]: type annotations needed
|
|
--> $DIR/issue-77092.rs:11:26
|
|
|
|
|
LL | println!("{:?}", take_array_from_mut(&mut arr, i));
|
|
| ^^^^^^^^^^^^^^^^^^^ cannot infer the value of the const parameter `N` declared on the function `take_array_from_mut`
|
|
|
|
|
note: required by a const generic parameter in `take_array_from_mut`
|
|
--> $DIR/issue-77092.rs:3:27
|
|
|
|
|
LL | fn take_array_from_mut<T, const N: usize>(data: &mut [T], start: usize) -> &mut [T; N] {
|
|
| ^^^^^^^^^^^^^^ required by this const generic parameter in `take_array_from_mut`
|
|
help: consider specifying the generic arguments
|
|
|
|
|
LL | println!("{:?}", take_array_from_mut::<i32, N>(&mut arr, i));
|
|
| ++++++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0284`.
|