Files
rust/tests/ui/const-generics/infer/issue-77092.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.7 KiB
Plaintext
Raw Normal View History

2024-06-17 08:34:26 +00:00
error[E0284]: type annotations needed
2020-11-17 11:44:21 +01:00
--> $DIR/issue-77092.rs:11:26
|
LL | println!("{:?}", take_array_from_mut(&mut arr, i));
2022-02-14 13:25:26 +01:00
| ^^^^^^^^^^^^^^^^^^^ 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`
2024-06-17 08:34:26 +00:00
--> $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`
2024-06-17 08:34:26 +00:00
help: consider specifying the generic arguments
|
LL | println!("{:?}", take_array_from_mut::<i32, N>(&mut arr, i));
| ++++++++++
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`
| |
| type must be known at this point
|
= note: required for `[i32; _]` to implement `Debug`
= note: 1 redundant requirement hidden
= note: required for `&mut [i32; _]` to implement `Debug`
2024-10-14 20:24:30 +02:00
note: required by a bound in `core::fmt::rt::Argument::<'_>::new_debug`
2024-06-17 08:34:26 +00:00
--> $SRC_DIR/core/src/fmt/rt.rs:LL:COL
2022-02-14 13:25:26 +01:00
help: consider specifying the generic arguments
|
2022-02-14 13:25:26 +01:00
LL | println!("{:?}", take_array_from_mut::<i32, N>(&mut arr, i));
| ++++++++++
2024-06-17 08:34:26 +00:00
error: aborting due to 2 previous errors
2024-06-17 08:34:26 +00:00
For more information about this error, try `rustc --explain E0284`.