mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			223 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			223 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn main() {
 | |
|     let _ = (((),),).1.0; //~ ERROR no field `1` on type `(((),),)`
 | |
| 
 | |
|     let _ = (((),),).0.1; //~ ERROR no field `1` on type `((),)`
 | |
| 
 | |
|     let _ = (((),),).000.000; //~ ERROR no field `000` on type `(((),),)`
 | |
| }
 | 
