rust/tests/ui/const-generics/generic_const_exprs/issue-109141.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
285 B
Rust
Raw Normal View History

#![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()
}
}
struct EntriesBuffer(Box<[[u8; HashesEntryLEN]; 5]>);
//~^ ERROR: cannot find value `HashesEntryLEN` in this scope
fn main() {}