mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			474 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			474 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| ==== Source: A ====
 | |
| type T is uint;
 | |
| using L for T global;
 | |
| library L {
 | |
|     function inc(T x) internal pure returns (T) {
 | |
|         return T.wrap(T.unwrap(x) + 1);
 | |
|     }
 | |
|     function dec(T x) external pure returns (T) {
 | |
|         return T.wrap(T.unwrap(x) - 1);
 | |
|     }
 | |
| }
 | |
| 
 | |
| ==== Source: B ====
 | |
| contract C {
 | |
|     function f() public pure returns (T r1, T r2) {
 | |
|         r1 = r1.inc().inc();
 | |
|         r2 = r1.dec();
 | |
|     }
 | |
| }
 | |
| 
 | |
| import {T} from "A";
 | |
| 
 | |
| // ----
 | |
| // library: "A":L
 | |
| // f() -> 2, 1
 |