2023-06-24 14:27:58 +09:00
|
|
|
#![feature(generic_const_exprs)]
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
|
|
impl EntriesBuffer {
|
|
|
|
|
fn a(&self) -> impl Iterator {
|
2024-09-20 20:17:13 -04:00
|
|
|
self.0.iter_mut()
|
2023-06-24 14:27:58 +09:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct EntriesBuffer(Box<[[u8; HashesEntryLEN]; 5]>);
|
|
|
|
|
//~^ ERROR: cannot find value `HashesEntryLEN` in this scope
|
|
|
|
|
|
|
|
|
|
fn main() {}
|