summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/parent_generics_of_encoding_impl_trait.stderr
blob: 87ff7babe71c09793f46f1e2a2d3069771188cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0284]: type annotations needed
  --> $DIR/parent_generics_of_encoding_impl_trait.rs:9:5
   |
LL |     generics_of_parent_impl_trait::foo([()]);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `foo`
   |
note: required by a bound in `foo`
  --> $DIR/auxiliary/generics_of_parent_impl_trait.rs:6:48
   |
LL | pub fn foo<const N: usize>(foo: impl Into<[(); N + 1]>) {
   |                                                ^^^^^ required by this bound in `foo`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0284`.