mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			315 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			315 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| library Lib {
 | |
|     function x() public view returns (uint) {
 | |
|         return 1;
 | |
|     }
 | |
| }
 | |
| contract Test {
 | |
|     uint t;
 | |
|     function f() public returns (uint) {
 | |
|         t = 2;
 | |
|         return this.g();
 | |
|     }
 | |
|     function g() public view returns (uint) {
 | |
|         return Lib.x();
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // library: Lib
 | |
| // f() -> 1
 |