mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			217 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			217 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| 
 | |
| fn main () {
 | |
|     let n = (1, (2, 3)).1.1;
 | |
|     assert_eq!(n, 3);
 | |
| 
 | |
|     let n = (1, (2, (3, 4))).1.1.1;
 | |
|     assert_eq!(n, 4);
 | |
| 
 | |
|     // This is a range expression, not nested indexing.
 | |
|     let _ = 0.0..1.1;
 | |
| }
 | 
