blob: f4864971ae5d14decd24171c405160e3bf7c1bba [file]
//@ known-bug: #138089
//@ needs-rustc-debug-assertions
#![feature(generic_const_exprs)]
#![feature(min_generic_const_args)]
#![feature(inherent_associated_types)]
struct OnDiskDirEntry<'a> {}
impl<'a> OnDiskDirEntry<'a> {
#[type_const]
const LFN_FRAGMENT_LEN: i64 = 2;
fn lfn_contents() -> [char; Self::LFN_FRAGMENT_LEN] {
loop {}
}
}