mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			311 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			311 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ known-bug: #138089
 | 
						|
#![feature(generic_const_exprs)]
 | 
						|
#![feature(min_generic_const_args)]
 | 
						|
#![feature(inherent_associated_types)]
 | 
						|
struct OnDiskDirEntry<'a> {}
 | 
						|
 | 
						|
impl<'a> OnDiskDirEntry<'a> {
 | 
						|
    const LFN_FRAGMENT_LEN: i64 = 2;
 | 
						|
 | 
						|
    fn lfn_contents() -> [char; Self::LFN_FRAGMENT_LEN] {
 | 
						|
        loop {}
 | 
						|
    }
 | 
						|
}
 |