mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			163 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			163 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() {}
 |