mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			415 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			415 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma experimental "v0.5.0";
 | 
						|
contract C {
 | 
						|
	function f() public pure returns (uint, uint, bytes32) {
 | 
						|
		uint a;
 | 
						|
		bytes32 b;
 | 
						|
		(a,) = f();
 | 
						|
		(,b) = f();
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// TypeError: (133-136): Type tuple(uint256,uint256,bytes32) is not implicitly convertible to expected type tuple(uint256,).
 | 
						|
// TypeError: (147-150): Type tuple(uint256,uint256,bytes32) is not implicitly convertible to expected type tuple(,bytes32).
 |