mirror of
				https://github.com/rust-lang/rust-analyzer.git
				synced 2025-10-28 12:53:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			160 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			160 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // https://github.com/rust-analyzer/rust-analyzer/issues/674
 | |
| 
 | |
| struct Repr { raw: [u8; 1] }
 | |
| 
 | |
| fn abc() {
 | |
|     Repr { raw: [0] }.raw[0] = 0;
 | |
|     Repr{raw:[0]}();
 | |
| }
 | 
