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