mirror of
				https://github.com/astral-sh/ruff.git
				synced 2025-10-29 19:17:20 +00:00 
			
		
		
		
	
		
			
				
	
	
	
	
		
			135 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			135 B
		
	
	
	
	
	
	
	
Multi-target assignment
Basic
x = y = 1
reveal_type(x)  # revealed: Literal[1]
reveal_type(y)  # revealed: Literal[1]
