mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			448 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			448 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| ==== Source: s1.sol ====
 | |
| import {f as g, g as h} from "s2.sol";
 | |
| function f() pure returns (uint) { return 1000 + g() - h(); }
 | |
| ==== Source: s2.sol ====
 | |
| import {f as h} from "s1.sol";
 | |
| function f() pure returns (uint) { return 2; }
 | |
| function g() pure returns (uint) { return 4; }
 | |
| contract C {
 | |
|   function foo() public pure returns (uint) {
 | |
|     return h() - f() - g();
 | |
|   }
 | |
| }
 | |
| // ====
 | |
| // compileViaYul: also
 | |
| // compileToEwasm: also
 | |
| // ----
 | |
| // foo() -> 992
 |