2023-06-24 05:27:58 +00:00
|
|
|
error[E0425]: cannot find value `HashesEntryLEN` in this scope
|
2024-09-21 00:17:13 +00:00
|
|
|
--> $DIR/issue-109141.rs:10:32
|
2023-06-24 05:27:58 +00:00
|
|
|
|
|
|
|
|
LL | struct EntriesBuffer(Box<[[u8; HashesEntryLEN]; 5]>);
|
|
|
|
| ^^^^^^^^^^^^^^ not found in this scope
|
|
|
|
|
|
|
|
|
help: you might be missing a const parameter
|
|
|
|
|
|
|
|
|
LL | struct EntriesBuffer<const HashesEntryLEN: /* Type */>(Box<[[u8; HashesEntryLEN]; 5]>);
|
|
|
|
| ++++++++++++++++++++++++++++++++++
|
|
|
|
|
2024-09-21 00:17:13 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-06-24 05:27:58 +00:00
|
|
|
|
2024-09-21 00:17:13 +00:00
|
|
|
For more information about this error, try `rustc --explain E0425`.
|