mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			430 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			430 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
==== Source: A ====
 | 
						|
function f(uint x) pure returns (uint) {
 | 
						|
    return x + 2;
 | 
						|
}
 | 
						|
function g(uint x) pure returns (uint) {
 | 
						|
    return x + 8;
 | 
						|
}
 | 
						|
 | 
						|
==== Source: B ====
 | 
						|
import {f as g, g as f} from "A";
 | 
						|
 | 
						|
==== Source: C ====
 | 
						|
contract C {
 | 
						|
	function test(uint x, uint y) public pure returns (uint, uint) {
 | 
						|
        return (x.f(), y.g());
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
using {M.g, M.f} for uint;
 | 
						|
 | 
						|
import "B" as M;
 | 
						|
 | 
						|
// ----
 | 
						|
// test(uint256,uint256): 1, 1 -> 9, 3
 |