14 lines
285 B
Rust
14 lines
285 B
Rust
#![feature(generic_const_exprs)]
|
|
#![allow(incomplete_features)]
|
|
|
|
impl EntriesBuffer {
|
|
fn a(&self) -> impl Iterator {
|
|
self.0.iter_mut()
|
|
}
|
|
}
|
|
|
|
struct EntriesBuffer(Box<[[u8; HashesEntryLEN]; 5]>);
|
|
//~^ ERROR: cannot find value `HashesEntryLEN` in this scope
|
|
|
|
fn main() {}
|