mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			162 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			162 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| 
 | |
| pub struct A<'a>(&'a ());
 | |
| 
 | |
| impl<'a> A<'a> {
 | |
|     const N: usize = 68;
 | |
| 
 | |
|     pub fn foo(&self) {
 | |
|         let _b = [0; Self::N];
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
