rust/tests/ui/const-generics/generic_const_exprs/issue-109141.rs
Yuki Okushi 13cc8dd580
Add a regression test for #109141
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
2023-06-24 14:27:58 +09:00

14 lines
364 B
Rust

#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
impl EntriesBuffer {
fn a(&self) -> impl Iterator {
self.0.iter_mut() //~ ERROR: cannot borrow `*self.0` as mutable, as it is behind a `&` reference
}
}
struct EntriesBuffer(Box<[[u8; HashesEntryLEN]; 5]>);
//~^ ERROR: cannot find value `HashesEntryLEN` in this scope
fn main() {}