mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			640 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			640 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract Base {
 | 
						|
    uint256 dataBase;
 | 
						|
 | 
						|
    function getViaBase() public returns (uint256 i) {
 | 
						|
        return dataBase;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
contract Derived is Base {
 | 
						|
    uint256 dataDerived;
 | 
						|
 | 
						|
    function setData(uint256 base, uint256 derived) public returns (bool r) {
 | 
						|
        dataBase = base;
 | 
						|
        dataDerived = derived;
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    function getViaDerived() public returns (uint256 base, uint256 derived) {
 | 
						|
        base = dataBase;
 | 
						|
        derived = dataDerived;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// ====
 | 
						|
// compileToEwasm: also
 | 
						|
// compileViaYul: also
 | 
						|
// ----
 | 
						|
// setData(uint256,uint256): 1, 2 -> true
 | 
						|
// getViaBase() -> 1
 | 
						|
// getViaDerived() -> 1, 2
 |