mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			303 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			303 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
  function f() internal pure returns (uint, uint, uint, uint) {
 | 
						|
    (uint a, uint b,,) = f();
 | 
						|
    a; b;
 | 
						|
  }
 | 
						|
  function g() internal pure {
 | 
						|
    (bytes memory a, string storage b) = h();
 | 
						|
    a; b;
 | 
						|
  }
 | 
						|
  function h() internal pure returns (bytes memory, string storage s) { s = s; }
 | 
						|
}
 | 
						|
// ----
 |