mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	 edafbaffb2
			
		
	
	
		edafbaffb2
		
			
		
	
	
	
	
		
			
			- Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test
		
			
				
	
	
		
			11 lines
		
	
	
		
			199 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			199 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| 
 | |
| fn main() {
 | |
|     let tuple = (((),),);
 | |
| 
 | |
|     let () = tuple. 0.0; // OK, whitespace
 | |
|     let () = tuple.0. 0; // OK, whitespace
 | |
| 
 | |
|     let () = tuple./*special cases*/0.0; // OK, comment
 | |
| }
 |